-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
eslint.config.js
37 lines (35 loc) · 935 Bytes
/
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
import antfu from "@antfu/eslint-config"
export default antfu({
ignores: ["**/package.json"],
stylistic: 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",
"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",
],
},
],
},
},
})