-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (23 loc) · 607 Bytes
/
.eslintrc
File metadata and controls
24 lines (23 loc) · 607 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",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
// Make sure this is always the last configuration in the extends array:
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"@typescript-eslint/no-unused-vars": "warn",
"no-console": ["warn", { "allow": ["info", "warn", "error"] }],
"no-warning-comments": ["warn", { "terms": ["fixme"], "location": "start" }]
}
}