-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.eslintrc.json
33 lines (33 loc) · 908 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
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"airbnb",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"globals": {
"NodeJS": true
},
"env": {
"jasmine": true,
"jest": true
},
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "off",
"no-underscore-dangle": ["error", { "allowAfterSuper": true, "allowAfterThis": true }],
"no-return-await": "off",
"indent": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"import/prefer-default-export": "off",
"no-dupe-class-members": "off",
"consistent-return": "off",
"prefer-destructuring": "off",
"class-methods-use-this": "off"
}
}