-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.js
50 lines (46 loc) · 863 Bytes
/
node.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
'use strict';
module.exports = {
// https://eslint.org/docs/user-guide/configuring#specifying-environments
env: {
node: true
},
// https://eslint.org/docs/user-guide/configuring/language-options#specifying-parser-options
parserOptions: {
sourceType: 'script'
},
plugins: [
'node'
],
rules: {
'no-console': 'off',
'strict': [
'error',
'global'
],
// eslint-plugin-node
// https://github.com/mysticatea/eslint-plugin-node
'node/no-unpublished-bin': 'error',
'node/process-exit-as-throw': 'error',
'node/no-deprecated-api': 'error',
// unicorn overrides
"unicorn/prefer-module": 0,
'unicorn/catch-error-name': [
'error',
{
'ignore': [
'err'
]
}
],
'unicorn/prevent-abbreviations': [
'error',
{
'allowList': {
'err': true,
'req': true,
'res': true
}
}
]
}
};