forked from RossMcMillan92/djent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (38 loc) · 1 KB
/
.eslintrc
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
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true
},
"extends": "airbnb/base",
"rules" : {
"semi" : ["error", "never"],
"no-multi-spaces": 0,
"no-multi-assign": 0,
"new-cap": 0,
"no-undef" : 1,
"vars-on-top" : 0,
"no-unused-vars": 1,
"no-use-before-define": 0,
"comma-dangle" : 0,
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"consistent-return": 0,
"array-bracket-spacing": 0,
"no-confusing-arrow": 0,
"no-nested-ternary": 0,
"key-spacing": 0,
"max-len": 0,
"no-param-reassign": 0,
"no-case-declarations": 0,
"import/prefer-default-export": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"global-require": 0,
"no-tabs": 0
}
}