-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
59 lines (58 loc) · 1.75 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
/* eslint-env node */
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/strict-type-checked',
'airbnb-base',
'airbnb-typescript/base'
],
parserOptions: {
project: true,
tsconfigRootDir: __dirname
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'unused-imports', '@stylistic'],
root: true,
rules: {
'max-len': 'off',
'no-await-in-loop': 'off',
'no-restricted-syntax': 'off',
'import/no-default-export': 'error',
'class-methods-use-this': 'off',
'import/prefer-default-export': 'off',
'@stylistic/quotes': ['error', 'single'],
'@stylistic/semi': ['error', 'always'],
'@stylistic/no-trailing-spaces': 'error',
'@typescript-eslint/comma-dangle': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'unused-imports/no-unused-imports': 'error',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/indent': 'off',
'unused-imports/no-unused-vars': [
'off',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_'
}
],
'@typescript-eslint/prefer-destructuring': [
'error',
{
'object': true,
'array': true
}
],
"import/no-extraneous-dependencies":[
"error",
{
"devDependencies":[
"**/*.{u,i}spec.ts"
]
}
]
},
'ignorePatterns': ["**/*.cjs"]
};