-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
84 lines (84 loc) · 1.26 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
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
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"standard",
"eslint:recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"react"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"indent": [
2,
4
],
"arrow-parens": [
2,
"always"
],
"semi": [
2,
"always"
],
"comma-dangle": [
2,
"always-multiline"
],
"jsx-quotes": [
2
],
"dot-notation": [
2,
{
"allowPattern": "^[0-9A-Za-z]+(_[0-9A-Za-z]+)+$"
}
],
"curly": [
2,
"all"
],
"react/jsx-first-prop-new-line": [
2,
"multiline-multiprop"
],
"react/jsx-indent-props": [
2,
"first"
],
"react/sort-prop-types": [
2,
{
"callbacksLast": true,
"requiredFirst": true
}
],
"react/jsx-sort-props": [
2,
{
"callbacksLast": true,
"reservedFirst": true,
"shorthandFirst": true
}
]
}
}