-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
62 lines (62 loc) · 2.49 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
module.exports = {
extends: "divid",
parserOptions: {
project: "./packages/tsconfig.settings.json",
},
rules: {
"functional/no-this-expression": "off",
"functional/prefer-readonly-type": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"functional/no-class": "off",
"global-require": "off",
"no-restricted-globals": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"no-case-declarations": "off",
"prefer-const": "off",
"no-useless-concat": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-parameter-properties": "off",
curly: "off",
"default-case": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/no-unnecessary-condition": "off",
"no-useless-return": "off",
"@typescript-eslint/ban-tslint-comment": "off",
"import/order": "off",
eqeqeq: "off",
"no-throw-literal": "off",
"@typescript-eslint/no-throw-literal": "off",
"@typescript-eslint/unified-signatures": "off",
"no-bitwise": "off",
"@typescript-eslint/no-implicit-any-catch": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/init-declarations": "off",
"@typescript-eslint/no-shadow": "off",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
"no-empty-pattern": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"no-restricted-properties": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/switch-exhaustiveness-check": "off",
"@typescript-eslint/prefer-reduce-type-parameter": "off",
"one-var": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/prefer-readonly": "off",
"no-alert": "off",
"max-lines": ["error", 1100],
"prefer-object-spread": "off",
},
};