-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
57 lines (57 loc) · 1.79 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
{
"extends": ["airbnb", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
},
"import/resolver": {
"typescript": {}
}
},
"rules": {
"@typescript-eslint/indent": "off",
"indent": ["error", 4],
"quotes": ["error", "double"],
"linebreak-style": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-explicit-any": "off",
"import/extensions": "off",
"max-classes-per-file": "off",
"lines-between-class-members": "off",
"@typescript-eslint/no-parameter-properties": "off",
"eqeqeq": "off",
"no-param-reassign": "off",
"no-useless-constructor": "off",
"import/prefer-default-export": "off",
"no-empty-function": "off",
"no-restricted-syntax": "off",
"no-prototype-builtins": "off",
"class-methods-use-this": "off",
"no-plusplus": "off",
"no-multi-str": "off",
"no-case-declarations": "off",
"no-bitwise": "off",
"radix": "off",
"no-constant-condition": "off",
"no-nested-ternary": "off",
"@typescript-eslint/no-this-alias": "off",
"import/no-cycle": "off",
"no-underscore-dangle": "off",
"no-await-in-loop": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/no-self-import": "off",
"import/no-duplicates": "off",
"import/order": "off",
"import/named": "off",
"import/no-named-as-default-member": "off",
"import/no-named-as-default": "off",
"import/no-useless-path-segments": "off"
},
"env": {
"browser": true,
"node": true
}
}