-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.eslintrc.json
More file actions
43 lines (43 loc) · 1.19 KB
/
.eslintrc.json
File metadata and controls
43 lines (43 loc) · 1.19 KB
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
34
35
36
37
38
39
40
41
42
43
{
"extends": "../../.eslintrc.json",
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "@stylistic", "mocha", "n"],
"parserOptions": {
"ecmaVersion": 2021
},
"env": {
"node": true,
"es6": true
},
"rules": {
"@typescript-eslint/no-var-requires": "off",
"mocha/no-setup-in-describe": "off",
"mocha/no-async-describe": "off",
"mocha/no-exclusive-tests": "error",
"mocha/no-skipped-tests": "error",
"mocha/no-identical-title": "off",
"mocha/no-mocha-arrows": "off",
"mocha/consistent-spacing-between-blocks": "off",
"mocha/no-exports": "off",
"n/no-unsupported-features/es-builtins": [
"error",
{
"version": ">=16.0.0",
"ignores": []
}
],
"n/no-unsupported-features/node-builtins": [
"error",
{
"version": ">=16.0.0",
"ignores": []
}
]
},
"overrides": [
{
"extends": ["plugin:@typescript-eslint/disable-type-checked"],
"files": ["./**/*.js"]
}
]
}