-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
51 lines (50 loc) · 1.67 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
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"env": {
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": ["warn", { "caughtErrors": "none", "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
"prefer-const":[ "error", {"destructuring": "all"}],
"rest-spread-spacing": "warn",
"block-spacing":"warn",
"key-spacing": "warn",
"comma-spacing": ["warn"],
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/type-annotation-spacing": ["warn"],
"arrow-spacing":["warn"],
"@typescript-eslint/no-duplicate-imports": ["error"],
"@typescript-eslint/no-extra-parens": ["error"],
"@typescript-eslint/no-namespace": ["off", { "allowDeclarations": false }],
"@typescript-eslint/explicit-module-boundary-types": ["off"],
"semi": "off",
"@typescript-eslint/semi": ["error", "never"],
"quotes": [2, "single"]
},
"overrides": [
{
"files": ["*.test.ts", "*.spec.ts"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
}
},
{
"files": ["**/lib/**/*.cjs", "**/lib/**/*.js", "**/lib/**/*.mjs"],
"rules": {
"@typescript-eslint/semi": "off",
"@typescript-eslint/no-var-requires": "off",
"quotes": "off"
}
}
],
"ignorePatterns": [
"**/lib/**/*",
"**/*.d.ts",
"**/templates",
"packages/*/*.js"
]
}