generated from MetaMask/metamask-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.js
48 lines (43 loc) · 1.22 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
module.exports = {
root: true,
extends: ['@metamask/eslint-config'],
overrides: [
{
files: ['*.ts'],
extends: ['@metamask/eslint-config-typescript'],
rules: {
'@typescript-eslint/naming-convention': 0,
'@typescript-eslint/no-floating-promises': 1,
'@typescript-eslint/prefer-enum-initializers': 0,
'@typescript-eslint/restrict-template-expressions': 1,
'no-restricted-syntax': 0,
},
},
{
files: ['*.js'],
parserOptions: {
sourceType: 'script',
},
extends: ['@metamask/eslint-config-nodejs'],
},
{
files: ['*.test.ts', '*.test.js'],
extends: ['@metamask/eslint-config-jest'],
},
],
rules: {
// TODO: Fix jsdoc comments and enable rules
'jsdoc/check-alignment': 0,
'jsdoc/check-types': 0,
'jsdoc/match-description': 0,
'jsdoc/newline-after-description': 0,
'jsdoc/require-asterisk-prefix': 0,
'jsdoc/require-description': 0,
'jsdoc/require-jsdoc': 0,
'jsdoc/require-param': 0,
'jsdoc/require-param-description': 0,
'jsdoc/require-returns': 0,
'jsdoc/require-returns-description': 0,
},
ignorePatterns: ['!.eslintrc.js', '!.prettierrc.js', 'dist/'],
};