-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.eslintrc.json
40 lines (40 loc) · 1.03 KB
/
.eslintrc.json
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
{
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"react"
],
"root": true,
"rules": {
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
"quotes": ["error", "double"],
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-tabs": "error",
"no-trailing-spaces": "error",
"no-multiple-empty-lines": ["error", { "max": 1 }],
"no-multi-spaces": "error",
"no-mixed-spaces-and-tabs": "error",
"no-useless-escape": "error",
"no-var": ["error"],
"no-unreachable": "error",
"eol-last": ["error", "always"]
}
}