forked from meliorence/react-native-render-html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 627 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 627 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
{
"parser" : "babel-eslint",
"extends" : [
"standard",
"standard-react"
],
"env" : {
"browser" : true
},
"globals": {
"__DEV__": false
},
"rules": {
"indent": [2, 4],
"generator-star-spacing": 0,
"react/jsx-indent": [0, 4],
"jsx-indent-props": [0, 4],
"react/jsx-curly-spacing": [0, "never"],
"react/jsx-boolean-value": [0, "never"],
"semi" : [2, "always"],
"operator-linebreak": [2, "after"],
"no-warning-comments": [1, { "terms": ["todo", "fixme", "xxx"], "location": "start" }]
}
}