-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.eslintrc.js
42 lines (38 loc) · 1.14 KB
/
.eslintrc.js
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
const OFF = 0;
const WARN = 1;
const ERROR = 2;
module.exports = {
env: {
es2021: true,
node: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 13,
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/no-unused-vars': OFF,
'@typescript-eslint/no-explicit-any': OFF,
'@typescript-eslint/no-var-requires': OFF,
'no-empty': OFF,
eqeqeq: [ERROR, 'smart'],
radix: ERROR,
'block-scoped-var': ERROR,
'consistent-this': ERROR,
'default-case-last': ERROR,
'default-case': ERROR,
'dot-notation': ERROR,
'func-name-matching': ERROR,
'guard-for-in': ERROR,
'max-lines': [ERROR, { max: 2048 }],
'max-nested-callbacks': ERROR,
'max-params': [ERROR, { max: 10 }],
'new-cap': ERROR,
'no-invalid-this': ERROR,
'no-unused-expressions': ERROR,
'no-use-before-define': [ERROR, { functions: false }],
},
};