-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheslint.config.js
96 lines (94 loc) · 1.9 KB
/
eslint.config.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
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
import globals from "globals";
import js from "@eslint/js";
let rules = {
"no-console": "off",
"no-unused-vars": "off",
"array-bracket-spacing": "error",
"arrow-spacing": "error",
"brace-style": [
"error",
"allman"
],
"comma-spacing": "error",
"comma-style": "error",
"consistent-return": "error",
"computed-property-spacing": "error",
"eol-last": "error",
"indent": [
"error",
2,
{
"SwitchCase": 1,
"CallExpression": {
"arguments": "off"
},
"MemberExpression": "off",
"ArrayExpression": "off",
"ignoreComments": true
}
],
"key-spacing": "error",
"keyword-spacing": "error",
"linebreak-style": "error",
"new-parens": "error",
"no-prototype-builtins": "off",
"no-spaced-func": "error",
"no-trailing-spaces": "error",
"no-var": "error",
"no-whitespace-before-property": "error",
"object-curly-spacing": "error",
"operator-assignment": "error",
"operator-linebreak": "error",
"padded-blocks": [
"error",
"never"
],
"prefer-rest-params": "warn",
"prefer-spread": "warn",
"require-yield": "warn",
"quotes": [
"error",
"double",
{
"avoidEscape": true
}
],
"semi": "error",
"semi-spacing": "error",
"space-before-function-paren": [
"error",
"never"
],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"spaced-comment": "error",
"yield-star-spacing": "error"
};
export default [
js.configs.recommended,
{
files: ["*.js", "lib/**/*.js"],
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...globals.node,
...globals.es6,
},
},
rules
},
{
files: ["test/**/*.js"],
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...globals.mocha,
expect: "readonly"
},
},
rules
},
];