-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
.eslintrc.js
61 lines (56 loc) · 1.76 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
54
55
56
57
58
59
60
61
module.exports = {
root: true,
extends: ['@metamask/eslint-config'],
overrides: [
{
files: ['*.ts'],
extends: ['@metamask/eslint-config-typescript'],
rules: {
'@typescript-eslint/prefer-nullish-coalescing': 'off',
// TODO: resolve warnings and remove to make into errors
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/prefer-optional-chain': 'warn',
'@typescript-eslint/restrict-template-expressions': 'off',
'id-denylist': 'off',
'id-length': 'off',
'import/no-nodejs-modules': 'off',
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param-description': 'warn',
'jsdoc/require-hyphen-before-param-description': 'warn',
'jsdoc/match-description': 'warn',
'jsdoc/no-types': 'warn',
'no-restricted-globals': 'off',
'no-restricted-syntax': 'warn',
},
},
{
files: ['*.js'],
parserOptions: {
sourceType: 'script',
},
extends: ['@metamask/eslint-config-nodejs'],
},
{
files: ['*.test.ts', '*.test.js', 'test/**/*.ts'],
extends: ['@metamask/eslint-config-jest'],
rules: {
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/unbound-method': 'off',
'jest/expect-expect': [
'error',
{
assertFunctionNames: [
'expect',
'expectProviderRequestNotToHaveBeenMade',
],
},
],
'jsdoc/check-param-names': 'off',
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param': 'off',
},
},
],
ignorePatterns: ['!.eslintrc.js', '!.prettierrc.js', 'dist/'],
};