-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
103 lines (102 loc) · 4.35 KB
/
.eslintrc.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
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
93
94
95
96
97
98
99
100
101
102
103
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigDir: __dirname,
project: "**/tsconfig.json",
ecmaVersion: "es2020"
},
plugins: [
"@typescript-eslint",
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/all"
],
env: {
browser: true,
es2020: true
},
ignorePatterns: [
'node_modules',
'*.js',
'/types'
],
rules: {
// https://eslint.org/docs/rules/
"no-any": "off",
"no-prototype-builtins": "off",
"no-unused-vars": "off",
"prefer-rest-params": "warn",
"semi": "off",
"no-extra-parens": "off",
"quotes": "off",
"func-call-spacing": "off",
"comma-spacing": "off",
"keyword-spacing": "off",
"object-curly-spacing": ["warn", "always"],
"indent": "off",
"comma-dangle": ["warn", "never"],
"max-len": ["warn", 120],
"eqeqeq": "error",
"no-restricted-imports": "off",
"lines-between-class-members": "off",
"lines-around-comment": "off",
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#supported-rules
'@typescript-eslint/object-curly-spacing': ['warn', 'always'],
"@typescript-eslint/indent": ["warn", 4],
"@typescript-eslint/quotes": ["warn", "single"],
"@typescript-eslint/semi": "error",
"@typescript-eslint/no-extra-parens": "error",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-useless-constructor": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/explicit-module-boundary-types": ["error", { "allowArgumentsExplicitlyTypedAsAny": true }],
"@typescript-eslint/prefer-nullish-coalescing": "warn",
"@typescript-eslint/prefer-optional-chain": "warn",
"@typescript-eslint/prefer-ts-expect-error": "warn",
"@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/comma-spacing": "warn",
"@typescript-eslint/keyword-spacing": "warn",
"@typescript-eslint/consistent-indexed-object-style": ["error", "record"],
"@typescript-eslint/consistent-type-imports": ["error", { prefer: 'type-imports' }],
"@typescript-eslint/member-delimiter-style": "warn",
"@typescript-eslint/type-annotation-spacing": "warn",
"@typescript-eslint/naming-convention": "error",
"@typescript-eslint/no-magic-numbers": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/class-literal-property-style": "off",
"@typescript-eslint/space-before-function-paren": ["warn", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/init-declarations": "off",
"@typescript-eslint/no-unnecessary-condition": "off",
"@typescript-eslint/no-type-alias": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/no-loop-func": "off",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/array-type": "warn",
"@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/no-restricted-imports": "off",
"@typescript-eslint/lines-between-class-members": ["error"],
"@typescript-eslint/lines-around-comment": ["warn", {
"allowInterfaceStart": true,
"allowBlockStart": true,
"allowModuleStart": true,
"allowTypeStart": true,
"allowObjectStart": true,
"allowClassStart": true,
}]
}
}