-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.json
40 lines (40 loc) · 1005 Bytes
/
.eslintrc.json
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
{
"extends": ["ash-nazg/sauron-node"],
"settings": {
"polyfills": ["Object.entries"]
},
"overrides": [
{
"files": ["docs/jsdoc-config.js"],
"parserOptions": {
"sourceType": "script"
},
"globals": {
"module": "readonly"
},
"rules": {
"import/no-commonjs": 0,
"strict": ["error", "global"]
}
},
{
"files": ["**/*.md"],
"rules": {
"eol-last": ["off"],
"no-console": ["off"],
"no-undef": ["off"],
"no-unused-vars": ["off"],
"padded-blocks": ["off"],
"import/unambiguous": ["off"],
"import/no-commonjs": ["off"],
"import/no-unresolved": ["off"],
"node/no-missing-require": ["off"],
"node/no-missing-import": ["off"]
}
}
],
"rules": {
"require-unicode-regexp": "off",
"prefer-named-capture-group": "off"
}
}