forked from pladaria/realgamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (29 loc) · 949 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"indent": ["error", 4, {"SwitchCase": 1}],
"prefer-template": "off",
"object-curly-spacing": ["error", "never"],
"max-len": "off",
"no-shadow": "off",
"no-case-declarations": "off",
"arrow-parens": "off",
"no-confusing-arrow": "off",
"newline-per-chained-call": "off",
"no-plusplus": "off",
"import/prefer-default-export": "off",
"react/jsx-filename-extension": "off",
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
"react/prefer-stateless-function": "off",
"react/require-default-props": "off",
"react/forbid-prop-types": "off",
"react/prop-types": "off",
"jsx-a11y/no-marquee": "off",
"jsx-a11y/no-static-element-interactions": "off"
},
"plugins": [
"flowtype"
]
}