forked from erichbehrens/react-animated-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
38 lines (38 loc) · 1.06 KB
/
.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
38
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"react"
],
"extends": "airbnb-base",
"rules": {
"no-tabs":"off",
"indent": ["error", "tab", { "SwitchCase": 1 }],
"no-console": "error", // airbnb = warn
"object-curly-newline":"off", // airbnb = min 4
"consistent-return": "off",
"import/order": ["off", {
"groups": ["builtin", "external", "internal", "parent", "sibling", "index"],
"newlines-between": "never"
}],
"default-case": "off",
"react/jsx-uses-react": [1],
"react/jsx-uses-vars": [1],
"react/react-in-jsx-scope": [1],
"operator-linebreak": ["error", "after"],
"arrow-parens": ["error", "as-needed", {"requireForBlockBody": true}]
}
}