-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
35 lines (35 loc) · 869 Bytes
/
.eslintrc
File metadata and controls
35 lines (35 loc) · 869 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
27
28
29
30
31
32
33
34
35
{
"root": true,
"extends": [
"@mntm",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:node/recommended"
],
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "."
},
"plugins": [
"node",
"import"
],
"rules": {
"global-require": 0,
"no-undefined": 0,
"no-process-exit": 0,
"no-sync": 0,
"class-methods-use-this": 0,
"strict": 0,
"unicorn/no-process-exit": 0,
"unicorn/no-array-reduce": 0,
"@typescript-eslint/no-require-imports": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/no-implicit-any-catch": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"@typescript-eslint/no-throw-literal": 0,
"sonarjs/no-nested-template-literals": 0,
"node/shebang": 0
}
}