-
-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy path.eslintrc.json
More file actions
24 lines (24 loc) · 667 Bytes
/
.eslintrc.json
File metadata and controls
24 lines (24 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/ban-ts-comment": "off",
"no-async-promise-executor": "off",
"semi": "error",
"no-console": "error"
}
}