Skip to content

Commit 811511e

Browse files
committedSep 29, 2024·
chore: lint
1 parent f70b03c commit 811511e

File tree

10 files changed

+20
-21
lines changed

10 files changed

+20
-21
lines changed
 

‎eslint.config.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ export default unjs({
88
"@typescript-eslint/no-unused-vars": 0,
99
"unicorn/filename-case": 0,
1010
"unicorn/consistent-function-scoping": 0,
11+
"@typescript-eslint/no-empty-object-type": 0,
1112
},
1213
});

‎src/config/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ import type { NitroConfig } from "nitropack/types";
33
export type { NitroConfig } from "nitropack/types";
44

55
export function defineNitroConfig(config: NitroConfig): NitroConfig {
6-
config.cloudflare?.wrangler?.compatibility_flags;
76
return config;
87
}

‎src/types/_utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type IntRange<F extends number, T extends number> = Exclude<
1212

1313
export type ExcludeFunctions<G extends Record<string, any>> = Pick<
1414
G,
15-
// eslint-disable-next-line @typescript-eslint/ban-types
15+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
1616
{ [P in keyof G]: NonNullable<G[P]> extends Function ? never : P }[keyof G]
1717
>;
1818

‎src/types/config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ export interface StorageMounts {
323323
}
324324

325325
// Database
326-
// eslint-disable-next-line @typescript-eslint/ban-types
327326
export type DatabaseConnectionName = "default" | (string & {});
328327
export type DatabaseConnectionConfig = {
329328
connector: ConnectorName;

‎src/types/fetch/_serialize.ts

+4-7
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ type JsonPrimitive =
55
| string
66
| number
77
| boolean
8-
// eslint-disable-next-line @typescript-eslint/ban-types
9-
| String
10-
// eslint-disable-next-line @typescript-eslint/ban-types
11-
| Number
12-
// eslint-disable-next-line @typescript-eslint/ban-types
13-
| Boolean
8+
| string
9+
| number
10+
| boolean
1411
| null;
15-
// eslint-disable-next-line @typescript-eslint/ban-types
12+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
1613
type NonJsonPrimitive = undefined | Function | symbol;
1714

1815
/*

‎src/types/fetch/fetch.ts

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export interface InternalApi {}
88
export type NitroFetchRequest =
99
| Exclude<keyof InternalApi, `/_${string}` | `/api/_${string}`>
1010
| Exclude<FetchRequest, string>
11-
// eslint-disable-next-line @typescript-eslint/ban-types
1211
| (string & {});
1312

1413
export type MiddlewareOf<

‎src/types/handler.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ export interface NitroEventHandler {
4747
/*
4848
* Environments to include this handler
4949
*/
50-
env?: MaybeArray<
51-
// eslint-disable-next-line @typescript-eslint/ban-types
52-
"dev" | "prod" | "prerender" | PresetName | (string & {})
53-
>;
50+
env?: MaybeArray<"dev" | "prod" | "prerender" | PresetName | (string & {})>;
5451
}
5552

5653
export interface NitroDevEventHandler {

‎src/types/nitro.ts

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export type NitroTypes = {
3535
};
3636

3737
export interface NitroFrameworkInfo {
38-
// eslint-disable-next-line @typescript-eslint/ban-types
3938
name?: "nitro" | (string & {});
4039
version?: string;
4140
}

‎test/fixture/routes/assets/[id].ts

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export default eventHandler(async (event) => {
22
const serverAssets = useStorage("assets/server");
3+
34
const id = event.context.params.id;
45

56
if (!(await serverAssets.hasItem(id))) {
@@ -9,9 +10,18 @@ export default eventHandler(async (event) => {
910
const meta = (await serverAssets.getMeta(
1011
event.context.params.id
1112
)) as unknown as { type: string; etag: string; mtime: string };
12-
meta.type && setResponseHeader(event, "content-type", meta.type);
13-
meta.etag && setResponseHeader(event, "etag", meta.etag);
14-
meta.mtime && setResponseHeader(event, "last-modified", meta.mtime);
13+
14+
if (meta.type) {
15+
setResponseHeader(event, "content-type", meta.type);
16+
}
17+
18+
if (meta.etag) {
19+
setResponseHeader(event, "etag", meta.etag);
20+
}
21+
22+
if (meta.mtime) {
23+
setResponseHeader(event, "last-modified", meta.mtime);
24+
}
1525

1626
return serverAssets.getItemRaw(event.context.params.id);
1727
});

‎test/fixture/types.ts

-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ describe("API routes", () => {
230230
expectTypeOf($fetch("/api/serialized/null")).toEqualTypeOf<Promise<any>>();
231231

232232
expectTypeOf($fetch("/api/serialized/function")).toEqualTypeOf<
233-
// eslint-disable-next-line @typescript-eslint/ban-types
234233
Promise<{}>
235234
>();
236235

@@ -297,7 +296,6 @@ describe("defineCachedEventHandler", () => {
297296
Promise<{ message: string }>
298297
>(fixture);
299298
expectTypeOf(b).toEqualTypeOf<
300-
// eslint-disable-next-line @typescript-eslint/ban-types
301299
EventHandler<{}, Promise<{ message: string }>>
302300
>();
303301
});

0 commit comments

Comments
 (0)
Please sign in to comment.