-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
113 lines (105 loc) · 2.67 KB
/
.eslintrc.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
module.exports = {
root: true,
env: {
node: true,
},
parserOptions: {
sourceType: "module",
parser: "babel-eslint",
allowImportExportEverywhere: false,
ecmaVersion: 2020,
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
indent: ["error", 2, { SwitchCase: 1 }],
"array-bracket-newline": ["off", "consistent"],
"array-element-newline": [
"off",
{
multiline: true,
minItems: 3,
},
],
"array-bracket-spacing": ["error", "never"],
"block-spacing": ["error", "always"],
"brace-style": ["error", "1tbs", { allowSingleLine: true }],
camelcase: [
"error",
{
properties: "always",
ignoreDestructuring: true,
},
],
"eol-last": ["error", "always"],
"function-call-argument-newline": ["off", "consistent"],
"func-call-spacing": ["error", "never"],
"newline-before-return": "error",
"newline-per-chained-call": ["error", { ignoreChainWithDepth: 2 }],
"no-mixed-spaces-and-tabs": "error",
"no-multi-assign": ["error"],
"no-multiple-empty-lines": [
"error",
{
max: 2,
maxBOF: 0,
maxEOF: 0,
},
],
"no-spaced-func": "error",
"object-curly-spacing": ["error", "always"],
"object-curly-newline": ["error"],
"comma-dangle": [
"error",
{
arrays: "always-multiline",
objects: "always-multiline",
imports: "always-multiline",
exports: "always-multiline",
functions: "always-multiline",
},
],
"object-property-newline": [
"error",
{
allowAllPropertiesOnSameLine: false,
},
],
"space-in-parens": ["error", "never"],
"space-infix-ops": 0,
"template-tag-spacing": ["error", "always"],
quotes: ["error", "double"],
},
overrides: [
{
files: ["**.ts"],
parserOptions: {
parser: "@typescript-eslint/parser",
},
extends: [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
rules: {
"@typescript-eslint/member-delimiter-style": [
"error",
{
multiline: {
delimiter: "none",
requireLast: true,
},
singleline: {
delimiter: "comma",
requireLast: false,
},
},
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
},
},
],
globals: {
JSX: true,
},
};