-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy path.eslintrc
More file actions
26 lines (26 loc) · 574 Bytes
/
Copy path.eslintrc
File metadata and controls
26 lines (26 loc) · 574 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
25
26
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"mocha"
],
"env": {
"node": true,
"es6": true,
"mocha": true
},
"rules": {
"no-console": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-explicit-any": 0,
"mocha/no-exclusive-tests": "error",
"prefer-rest-params": "off",
"max-len": ["error", { "code": 200, "ignoreComments": true }]
}
}