-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
.eslintrc.js
46 lines (41 loc) · 1.35 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
module.exports = {
root: true,
extends: ['@metamask/eslint-config'],
overrides: [
{
files: ['*.ts'],
extends: ['@metamask/eslint-config-typescript'],
rules: {
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/unbound-method': 'warn',
'id-denylist': 'off',
'id-length': 'off',
// TODO: Move this to our shared config
'no-invalid-this': 'off',
'no-restricted-syntax': 'off',
'@typescript-eslint/no-invalid-this': ['error'],
'@typescript-eslint/restrict-template-expressions': 'off',
},
},
{
files: ['*.js'],
extends: ['@metamask/eslint-config-nodejs'],
},
{
files: ['*.test.ts', './tests/*.ts'],
extends: ['@metamask/eslint-config-jest'],
rules: {
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'id-denylist': 'off',
'import/no-nodejs-modules': 'off',
'no-restricted-globals': 'off',
},
},
],
ignorePatterns: ['!.eslintrc.js', '!.prettierrc.js', 'dist/'],
};