-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
75 lines (75 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"extends": [
"airbnb",
"plugin:ava/recommended",
"plugin:jsdoc/recommended",
"plugin:node/recommended",
"plugin:optimize-regex/all",
"plugin:ramda/recommended",
"plugin:security/recommended",
"plugin:unicorn/recommended"
],
"plugins": [
"ava",
"jsdoc",
"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": 2020
},
"rules": {
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": ["**/*.test.js", "**/test/**/*.js"],
"optionalDependencies": true,
"peerDependencies": false
}
],
"ava/no-only-test": 0,
"camelcase": 0,
"class-methods-use-this": 0,
"consistent-return": ["warn", { "treatUndefinedAsUnspecified": false }],
"global-require": 0,
"import/no-dynamic-require": 0,
"max-classes-per-file": 0,
"max-len": 0,
"no-bitwise": 0,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-inferred-method-name/no-inferred-method-name": "error",
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "caughtErrors": "none" }],
"node/no-unpublished-require": 0,
"object-curly-newline": 0,
"optimize-regex/optimize-regex": "warn",
"security/detect-non-literal-fs-filename": 0,
"security/detect-non-literal-require": 0,
"security/detect-object-injection": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0,
"unicorn/no-for-loop": 0,
"unicorn/no-fn-reference-in-iterator": 0,
"unicorn/no-null": 0,
"unicorn/no-reduce": 0,
"unicorn/no-useless-undefined": 0,
"unicorn/prevent-abbreviations": 0
}
}