-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
34 lines (34 loc) · 956 Bytes
/
.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
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true,
"jasmine": true,
"jest": true,
"node": true
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/indent": ["error", 4],
"indent": ["error", 4, {"SwitchCase": 1}],
"max-len": ["error", {"code": 120}],
"padded-blocks": ["error", { "classes": "always" }],
"lines-between-class-members": "off",
"class-methods-use-this": "off",
"import/prefer-default-export": "off",
"prefer-destructuring": "off"
},
"settings": {
"import/resolver": {
"node": {"extensions": [".js", ".jsx", ".ts", ".tsx"]}
}
},
"parser": "@typescript-eslint/parser"
}