-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc.cjs
59 lines (59 loc) · 1.68 KB
/
.eslintrc.cjs
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
module.exports = {
extends: [
'eslint:recommended',
'plugin:mocha/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier'
],
env: {
browser: false,
es2021: true,
mocha: true,
node: true
},
// root: true,
plugins: ['@typescript-eslint', 'mocha'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
tsconfigRootDir: __dirname,
project: './tsconfig.json'
},
rules: {
'lines-between-class-members': 'error',
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' }
],
'prefer-const': [
'error',
{
destructuring: 'any',
ignoreReadBeforeAssign: false
}
],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' }
],
'@typescript-eslint/naming-convention': [
'error',
{
selector: ['variable', 'function'],
format: ['camelCase']
},
{
selector: ['variable'],
modifiers: ['const'],
format: ['camelCase', 'UPPER_CASE']
}
],
'mocha/no-skipped-tests': 'warn',
'mocha/no-empty-description': 'off',
'mocha/no-exclusive-tests': 'error',
'@typescript-eslint/no-unsafe-member-access': 'warn'
}
};