-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
100 lines (98 loc) · 2.23 KB
/
.eslintrc.cjs
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
module.exports = {
root: true,
extends: ["airbnb-base", "plugin:eslint-plugin/recommended"],
plugins: ["eslint-plugin"],
env: {
es6: true,
node: true,
},
parserOptions: {
ecmaVersion: 6,
ecmaFeatures: {
jsx: true,
},
sourceType: "script",
},
ignorePatterns: ["coverage/", ".nyc_output/"],
rules: {
"comma-dangle": [2, "always-multiline"],
"object-shorthand": [
2,
"always",
{
ignoreConstructors: false,
avoidQuotes: false, // this is the override vs airbnb
},
],
"max-len": [
2,
120,
{
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreComments: true,
},
],
"consistent-return": 0,
"prefer-destructuring": [
2,
{ array: false, object: false },
{ enforceForRenamedProperties: false },
],
"prefer-object-spread": 0, // until node 8 is required
"prefer-rest-params": 0, // until node 6 is required
"prefer-spread": 0, // until node 6 is required
"function-call-argument-newline": 1, // TODO: enable
"function-paren-newline": 0,
"no-plusplus": [2, { allowForLoopAfterthoughts: true }],
"no-param-reassign": 1,
"no-restricted-syntax": [
2,
{
selector: "ObjectPattern",
message: "Object destructuring is not compatible with Node v4",
},
],
strict: [2, "safe"],
"valid-jsdoc": [
2,
{
requireReturn: false,
requireParamDescription: false,
requireReturnDescription: false,
},
],
"eslint-plugin/consistent-output": 0,
"eslint-plugin/require-meta-docs-description": [
2,
{ pattern: "^(Enforce|Require|Disallow)" },
],
"eslint-plugin/require-meta-schema": 0,
"eslint-plugin/require-meta-type": 0,
},
overrides: [
{
files: "tests/**",
rules: {
"no-template-curly-in-string": 1,
},
},
{
files: "markdown.config.js",
rules: {
"no-console": 0,
},
},
{
files: ".github/workflows/*.js",
parserOptions: {
ecmaVersion: 2019,
},
rules: {
camelcase: 0,
"no-console": 0,
"no-restricted-syntax": 0,
},
},
],
};