-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.json
99 lines (99 loc) · 2.53 KB
/
.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"root": true,
"env": {
"browser": true,
"es2022": true,
"node": true,
"jest": true,
"worker": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended",
"plugin:unicorn/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": [
"./tsconfig.json",
"./security/tsconfig.json",
"./chaos-engine/tsconfig.json",
"./ai-modules/tsconfig.json",
"./governance/tsconfig.json",
"./token-manager/tsconfig.json"
]
},
"settings": {
"node": {
"resolvePaths": ["node_modules"],
"tryExtensions": [".js", ".json", ".node", ".ts"]
}
},
"plugins": [
"@typescript-eslint",
"security",
"sonarjs",
"unicorn",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "caughtErrors": "all" }
],
"@typescript-eslint/no-non-null-assertion": "error",
"security/detect-object-injection": "error",
"security/detect-possible-timing-attacks": "error",
"sonarjs/cognitive-complexity": ["error", 15],
"unicorn/prefer-node-protocol": "error",
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"props": false,
"ref": false,
"env": false,
"err": false
}
}
],
"security/detect-object-injection": "error",
"security/detect-non-literal-fs-filename": "error",
"security/detect-possible-timing-attacks": "error",
"security/detect-eval-with-expression": "error",
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-debugger": "error",
"complexity": ["error", 10],
"max-depth": ["error", 4],
"max-lines-per-function": ["error", 50],
"max-params": ["error", 3]
},
"settings": {
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": [
"./tsconfig.json",
"./security/tsconfig.json",
"./chaos-engine/tsconfig.json",
"./ai-modules/tsconfig.json",
"./governance/tsconfig.json",
"./token-manager/tsconfig.json"
]
}
}
},
"ignorePatterns": [
"dist",
"node_modules",
"coverage",
"**/__mocks__/*",
"**/__fixtures__/*"
]
}