-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
56 lines (56 loc) · 1.36 KB
/
.eslintrc
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
54
55
56
{
"extends": [
"airbnb",
"plugin:node/recommended",
"plugin:ramda/recommended",
"plugin:security/recommended",
"plugin:unicorn/recommended"
],
"plugins": [
"no-inferred-method-name",
"node",
"optimize-regex",
"ramda",
"security",
"unicorn",
"xss"
],
"env": {
"es6": true,
"browser": true,
"mocha": true
},
"globals": {
"sinon": false,
"mocha": true,
"expect": true
},
"parserOptions": {
"ecmaVersion": 10
},
# Custom Disabled Rules
rules: {
"import/no-dynamic-require": 0,
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": ["**/*.test.js", "**/test/**/*.js"],
"optionalDependencies": true,
"peerDependencies": false
}
],
"node/no-unpublished-require": 0,
camelcase: 0,
global-require: 0,
max-len: 0,
no-empty: ["error", { "allowEmptyCatch": true }],
no-param-reassign: 0,
no-plusplus: 0, # Meaningless as other rules prevent the errors that could happen.
no-restricted-syntax: 0,
no-underscore-dangle: 0,
no-unused-vars: ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "caughtErrors": "none" }],
"security/detect-object-injection": 0,
"security/detect-non-literal-fs-filename": 0,
"optimize-regex/optimize-regex": "warn",
"unicorn/filename-case": 0
}
}