-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
83 lines (83 loc) · 3.06 KB
/
.eslintrc.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"env": {
"node": true,
"commonjs": true,
"es2022": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-unused-vars": "error",
"semi": ["error", "always"],
"comma-spacing": "error",
"no-extra-semi": "error",
"quotes": ["off", "double", { "avoidEscape": true }],
"no-var": "off",
"no-trailing-spaces": "error"
},
"overrides": [
{
"files": ["src/**/*.ts", "types/*.ts"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.cjs.json"]
},
"plugins": ["@typescript-eslint", "import"],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/consistent-type-definitions": ["error", "interface"],
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/prefer-ts-expect-error": "error",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/restrict-plus-operands": "off",
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal",
"object",
["parent", "sibling"],
"index",
"type"
],
"pathGroups": [
{
"pattern": "[!/]",
"group": "type",
"position": "before"
},
{
"pattern": "../src/*",
"group": "type",
"position": "before"
},
{
"pattern": "../types/*",
"group": "type",
"position": "after"
}
],
"distinctGroup": false,
"alphabetize": {
"order": "asc"
},
"newlines-between": "always-and-inside-groups"
}
]
}
}
]
}