-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
40 lines (40 loc) · 940 Bytes
/
.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
module.exports = {
env: {
es6: true,
node: 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'],
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,
},
};