-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
44 lines (42 loc) · 1.22 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import antfu from "@antfu/eslint-config"
export default antfu({
ignores: ["**/package.json", "**/*.generated.*"],
markdown: false,
stylistic: false,
jsonc: false,
jsx: false,
toml: false,
yaml: false,
test: { overrides: { "test/no-import-node-test": "off" } },
typescript: {
tsconfigPath: "tsconfig.json",
overrides: {
"no-console": "off",
"ts/no-use-before-define": "off",
"ts/consistent-type-definitions": "off",
"ts/consistent-type-imports": ["error", { fixStyle: "inline-type-imports" }],
"ts/no-unsafe-argument": "off",
"ts/no-unsafe-assignment": "off",
"antfu/no-top-level-await": "off",
"node/prefer-global/process": "off",
"perfectionist/sort-imports": [
"error",
{
type: "natural",
internalPattern: ["^@/", "^~/", "^#.+/"],
newlinesBetween: "always",
groups: [
["builtin", "builtin-type"],
["external", "external-type"],
["internal", "internal-type"],
["parent", "parent-type"],
["sibling", "sibling-type"],
["index", "index-type"],
"object",
"unknown",
],
},
],
},
},
})