-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.cjs
53 lines (47 loc) · 1.09 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
46
47
48
49
50
51
52
53
module.exports = {
root: true,
extends: ['@metamask/eslint-config', '@metamask/eslint-config-nodejs'],
parserOptions: {
sourceType: 'module',
},
rules: {
// This makes integration tests easier to read by allowing setup code and
// assertions to be grouped together better
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: 'directive',
next: '*',
},
{
blankLine: 'any',
prev: 'directive',
next: 'directive',
},
{
blankLine: 'always',
prev: 'multiline-block-like',
next: '*',
},
{
blankLine: 'always',
prev: '*',
next: 'multiline-block-like',
},
],
// It's common for scripts to access `process.env`
'node/no-process-env': 'off',
},
overrides: [
{
files: ['*.ts'],
extends: ['@metamask/eslint-config-typescript'],
},
{
files: ['*.test.ts'],
extends: ['@metamask/eslint-config-jest'],
},
],
ignorePatterns: ['!.eslintrc.js', '!.prettierrc.js', 'dist/'],
};