-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
53 lines (53 loc) · 1.27 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
43
44
45
46
47
48
49
50
51
52
53
module.exports = {
env: {
es6: true,
node: true,
jest: true,
},
extends: [
'airbnb-base',
'prettier',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:nestjs/recommended',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
describe: 'readonly',
it: 'readonly',
beforeEach: 'readonly',
beforeAll: 'readonly',
expect: 'readonly',
afterAll: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'nestjs', 'unused-imports'],
rules: {
'import/prefer-default-export': 0,
'import/no-unresolved': 0,
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'no-unused-vars': 0,
'no-useless-constructor': 0,
'no-empty-function': 0,
'class-methods-use-this': 0,
'max-classes-per-file': 0,
'import/extensions': 0,
'max-len': ['error', 150],
'max-lines-per-function': ['error', 40],
'unused-imports/no-unused-imports-ts': 'error',
'unused-imports/no-unused-vars-ts': [
'warn',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
},
],
},
};