-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
28 lines (28 loc) · 874 Bytes
/
.eslintrc
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
{
"root": true,
"parser" : "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/naming-convention": "error",
"@typescript-eslint/ban-ts-comment": "error",
"@typescript-eslint/ban-types": "error",
"@typescript-eslint/explicit-function-return-type": "error"
},
"ignorePatterns":[
"src/specs/**",
"backstop_data/engine_scripts",
"src/common/deactivation.modal.ts",
"src/common/safe.mode.disabled.options.check.ts",
"src/common/safe.mode.disabled.options.ts",
"src/support/steps/steps.ts",
"utils/commands.ts",
"utils/configurations.ts"
]
}