-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
37 lines (37 loc) · 907 Bytes
/
.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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"extends": [
"airbnb",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"babel"
],
"rules": {
"spaced-comment" : "off",
"react/jsx-filename-extension" : "off",
"react/destructuring-assignment" : "off",
"react/prop-types" : "off",
"react/jsx-one-expression-per-line" : "off",
"lines-between-class-members" : "off",
"no-restricted-globals": ["error", "event", "fdescribe"],
"react/jsx-max-props-per-line": "off",
"babel/semi": 1
}
}