-
Notifications
You must be signed in to change notification settings - Fork 126
/
.eslintrc.js
50 lines (50 loc) Β· 1.38 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
module.exports = {
root: true,
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
overrides: [
{
files: ['**/*.js'],
env: {
es6: true,
node: true,
},
},
{
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['plugin:@typescript-eslint/recommended', 'plugin:n/recommended'],
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-var-requires': 'off',
'n/no-missing-import': 'off',
'n/no-process-exit': 'off',
'n/shebang': 'off',
'no-case-declarations': 'off',
'no-empty': 'off',
'no-ex-assign': 'off',
'no-inner-declarations': 'off',
'no-useless-catch': 'off',
'prefer-const': [
'error',
{
destructuring: 'all',
},
],
'prefer-rest-params': 'off',
'prefer-spread': 'off',
},
},
],
ignorePatterns: [
'default-assets-package/thirdparty/**/*.js',
'dist/**/*.js',
'dist/**/*.d.ts',
'**/vendor/**',
],
};