-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
32 lines (32 loc) · 884 Bytes
/
.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
module.exports = {
env: {
node: true,
commonjs: true,
es6: true,
jquery: false,
jest: true,
jasmine: true
},
extends: ['eslint:recommended', 'plugin:security/recommended', 'plugin:prettier/recommended'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2018
},
plugins: ['node', 'promise', 'security'],
rules: {
quotes: ['warn', 'single'],
semi: ['error', 'never'],
'linebreak-style': 0,
'no-var': ['error'],
'no-console': ['warn'],
'no-unused-vars': ['warn'],
'no-trailing-spaces': ['error'],
'security/detect-object-injection': ['off'],
'security/detect-non-literal-require': ['off'],
'security/detect-non-literal-fs-filename': ['off'],
'no-process-exit': ['off'],
'node/no-unpublished-require': 0,
'require-atomic-updates': 0,
'object-curly-spacing': ['warn', 'always']
}
}