forked from maslianok/react-select-me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
29 lines (29 loc) · 684 Bytes
/
Copy path.eslintrc
File metadata and controls
29 lines (29 loc) · 684 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"max-len": [2, 120],
"react/jsx-filename-extension": 0,
"class-methods-use-this": 0,
"arrow-parens": 0,
"react/sort-comp": 0,
"object-curly-newline": 0,
"function-paren-newline": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-noninteractive-tabindex": 0,
"no-case-declarations": 0,
"operator-linebreak": 0,
"implicit-arrow-linebreak": 0
},
"settings": {
"import/resolve": {
"moduleDirectory": ["node_modules"]
}
}
}