-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.js
More file actions
66 lines (63 loc) · 1.75 KB
/
eslint.config.js
File metadata and controls
66 lines (63 loc) · 1.75 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import antfu from "@antfu/eslint-config"
import e18e from "@e18e/eslint-plugin"
export default antfu(
{
ignores: ["**/*.json"],
markdown: false,
stylistic: false,
jsonc: false,
jsx: false,
pnpm: false,
toml: false,
test: { overrides: { "test/no-import-node-test": "off" } },
typescript: {
tsconfigPath: "tsconfig.json",
ignoresTypeAware: ["copy.ts", "*.config.*"],
overrides: {
"no-console": "off",
"antfu/no-top-level-await": "off",
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"node/prefer-global/process": "off",
"ts/consistent-type-definitions": "off",
"ts/consistent-type-imports": [
"error",
{ fixStyle: "inline-type-imports", disallowTypeAnnotations: false },
],
"ts/no-unsafe-argument": "off",
"ts/no-unsafe-assignment": "off",
"ts/no-use-before-define": "off",
"unicorn/number-literal-case": "off",
"unused-imports/no-unused-vars": "off",
"perfectionist/sort-imports": [
"error",
{
type: "natural",
internalPattern: ["^@/", "^~/", "^#[a-zA-Z0-9-]+/"],
newlinesBetween: 1,
groups: [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"unknown",
],
},
],
},
},
},
e18e.configs.recommended,
{
files: ["example/**"],
rules: {
"no-var": "off",
"vars-on-top": "off",
"no-console": "off",
"prefer-destructuring": "off",
"unused-imports/no-unused-vars": "off",
"unicorn/prefer-node-protocol": "off",
},
},
)