forked from arnthor3/react-bootstrap-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
31 lines (31 loc) · 685 Bytes
/
.eslintrc
File metadata and controls
31 lines (31 loc) · 685 Bytes
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
{
"env": {
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"plugins": ["react"],
"extends": ["eslint:recommended", "airbnb"],
//this is to get the import export thing out of the mix
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 7,
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"beforeEach": true,
"describe": true,
"expect": true,
"it": true,
"React": true,
"xdescribe": true,
"xit": true
},
"rules": {
"no-unused-vars" : 0,
"no-console" : 0
}
}