-
Notifications
You must be signed in to change notification settings - Fork 44
/
.eslintrc.cjs
57 lines (51 loc) · 1.13 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
module.exports = {
root: true,
extends: ["eslint:recommended", "plugin:prettier/recommended"],
env: {
es6: true,
"shared-node-browser": true,
},
parserOptions: {
sourceType: "module",
ecmaVersion: 2020,
// ecmaFeatures: {
// jsx: true,
// },
},
rules: {
strict: ["error", "global"],
"no-empty": ["error", { allowEmptyCatch: true }],
"func-names": ["error", "always"],
"operator-linebreak": [
"error",
"after",
{ overrides: { "?": "before", ":": "before" } },
],
"capitalized-comments": ["off"],
"func-style": ["error", "declaration"],
// ECMAScript 6
// https://eslint.org/docs/rules/#ecmascript-6
"no-var": ["error"],
"prefer-arrow-callback": ["error"],
"prefer-const": ["error"],
"prefer-destructuring": [
"error",
{
array: false,
object: true,
},
],
"prefer-rest-params": ["error"],
"prefer-spread": ["error"],
// Potentially slower
// "prefer-template": ["error"],
},
overrides: [
{
files: ["**.cjs"],
env: {
commonjs: true,
},
},
],
};