-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
45 lines (45 loc) · 1.02 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
module.exports = {
extends: 'eslint:recommended',
rules: {
'no-console': 'off',
'no-unused-vars': 'off',
'no-undef': 'off',
'no-empty': 'off',
'no-constant-condition': 'off',
'no-prototype-builtins': 'off',
'no-unsafe-optional-chaining': 'off',
'no-unsafe-negation': 'off',
'no-unsafe-assignment': 'off',
'no-unsafe-member-access': 'off',
'no-unsafe-call': 'off',
'no-unsafe-return': 'off',
'no-unsafe-regex': 'off',
'no-unsafe-iteration': 'off',
'no-unsafe-finally': 'off',
'no-unsafe-arithmetic': 'off',
'no-unsafe-argument': 'off',
'no-unsafe-allow-prototype-access': 'off',
'no-unsafe-assign': 'off',
'no-unsafe-optional-chaining': 'off',
},
ignorePatterns: [
'.eslintrc.js',
'dist/',
'node_modules/',
'build/',
'coverage/',
'docs/',
'migrations/',
'seeds/',
'scripts/',
'test/',
'tmp/',
'temp/',
'tools/',
'webpack/',
'prisma/',
'jest.config.js',
'jest.setup.js',
'out/',
],
};