-
Notifications
You must be signed in to change notification settings - Fork 28
/
.eslintrc.json
92 lines (92 loc) · 2.43 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
84
85
86
87
88
89
90
91
92
{
"plugins": ["@typescript-eslint", "prettier", "import"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"project": "./tsconfig.json"
},
"env": {
"es6": true,
"node": true
},
"rules": {
"no-console": "off",
"no-debugger": "off",
"arrow-parens": ["error", "as-needed"],
"require-jsdoc": "off",
"space-before-function-paren": "off",
"comma-dangle": "off",
"padded-blocks": "off",
"camelcase": "warn",
"object-property-newline": "off",
"prefer-const": "warn",
"import/no-absolute-path": "off",
"no-prototype-builtins": "off",
"quote-props": ["warn", "as-needed"],
"lines-between-class-members": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"mjs": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-restricted-syntax": "off",
"no-await-in-loop": "warn",
"no-underscore-dangle": "off",
"max-classes-per-file": "off",
"no-use-before-define": "off",
"no-continue": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-redundant-type-constituents": "warn",
"@typescript-eslint/no-unsafe-enum-comparison": "warn",
"import/no-extraneous-dependencies": "off",
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": ["error"],
"no-void": [
"error",
{
"allowAsStatement": true
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"import/prefer-default-export": "off",
"class-methods-use-this": "off"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".vue"]
},
"typescript": {
"alwaysTryTypes": true
}
}
}
}