forked from lennardvandenberg/react-drag-listview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
28 lines (26 loc) · 626 Bytes
/
.eslintrc
File metadata and controls
28 lines (26 loc) · 626 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
{
"extends": "eslint-config-airbnb",
"rules": {
"no-useless-computed-key": 0,
"strict": 0,
"func-names": 0,
"space-before-function-paren": [0, "always"],
"no-var": 0,
"vars-on-top": 0,
"comma-dangle": 0,
"consistent-return": 1,
"no-return-assign": 0,
"no-extend-native": 1,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"react/no-array-index-key": 0,
"jsx-a11y/anchor-is-valid": 0,
"react/jsx-filename-extension": 0
},
"globals": {
"document": true,
"window": true
},
"parser": "babel-eslint"
}