forked from justinjung04/universal-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
27 lines (27 loc) · 765 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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"babel",
"react"
],
"rules": {
"quotes": [1, "single", {"allowTemplateLiterals": true}],
"curly": [1, "multi-line", "consistent"],
"strict": [1, "never"],
"semi": [1, "always"],
"no-unused-vars": [1, { "vars": "all", "args": "after-used" }],
"no-redeclare": [1, { "builtinGlobals": true }],
"brace-style": [1, "1tbs"],
"no-alert": 1,
"babel/object-shorthand": 1,
"babel/arrow-parens": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/jsx-no-duplicate-props": 1,
"react/react-in-jsx-scope": 1
}
}