-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patheslint.config.js
More file actions
66 lines (65 loc) · 1.34 KB
/
eslint.config.js
File metadata and controls
66 lines (65 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import globals from "globals";
import pluginJs from "@eslint/js";
import sonarjs from "eslint-plugin-sonarjs";
export default [
pluginJs.configs.recommended,
sonarjs.configs.recommended,
{
rules: {
"sonarjs/no-duplicate-string": "warn",
"sonarjs/no-unused-vars": "off",
"sonarjs/cognitive-complexity": "off",
},
},
{
languageOptions: {
globals: {
...globals.node,
},
},
},
{
files: ["**/tests/**", "**/*.test.js", "**/*.spec.js"],
languageOptions: {
globals: {
...globals.jest,
},
},
rules: {
"no-magic-numbers": "off",
},
},
{
rules: {
"no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
"no-undef": "error",
"no-magic-numbers": [
"error",
{
ignore: [-1, 0, 1],
ignoreArrayIndexes: true,
enforceConst: true,
detectObjects: false,
},
],
},
},
{
files: ["src/consts/**/*.js", "src/consts/*.js"],
rules: {
"no-magic-numbers": "off",
"sonarjs/no-hardcoded-ip": "off",
"sonarjs/publicly-writable-directories": "off",
},
},
{
ignores: ["node_modules/", "coverage/", "dist/", ".agent/"],
},
];