-
-
Notifications
You must be signed in to change notification settings - Fork 587
/
.eslintrc.js
38 lines (38 loc) · 933 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
33
34
35
36
37
38
module.exports = {
root: true,
env: {
node: true,
commonjs: true,
es6: true,
jquery: false,
jest: true,
jasmine: false
},
extends: ["eslint:recommended", "plugin:security/recommended", "plugin:prettier/recommended"],
parserOptions: {
sourceType: "module",
ecmaVersion: "2018"
},
plugins: ["node", "promise", "security"],
rules: {
"no-var": ["error"],
"no-console": ["error"],
"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
},
ignorePatterns: ["benchmark/test.js", "test/typescript/hello-world/out/*.js"],
overrides: [
{
files: ["runner-esm.mjs"],
parserOptions: {
sourceType: "module",
ecmaVersion: "2020" // needed to allow import.meta
}
}
]
};