-
Notifications
You must be signed in to change notification settings - Fork 220
/
.eslintrc.json
33 lines (33 loc) · 997 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
{
"env": {
"browser": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-useless-escape": "warn",
"no-unused-vars": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-unreachable": "warn",
"no-extra-semi": "warn",
"no-fallthrough": "off",
"no-empty": "warn",
"no-case-declarations": "off",
"prefer-const": "warn",
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/triple-slash-reference": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-namespace": "off"
},
"ignorePatterns": ["scripts/*.js", "src/*.config.js", "test/fixtures"],
"plugins": ["@typescript-eslint"]
}