-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.eslintrc
29 lines (29 loc) · 1 KB
/
.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
// Use this file as a starting point for your project's .eslintrc.
// Copy this file, and add rule overrides as needed.
{
"parser": "babel-eslint",
"globals": {
"I": "Immutable",
"google": true
},
"extends": "airbnb",
"env": { // http://eslint.org/docs/user-guide/configuring.html#specifying-environments
"browser": true, // browser global variables
"node": true, // Node.js global variables and Node.js-specific rules
"mocha": true // Mocha global variables for unit tests
},
"rules": {
"strict": 0,
"new-cap": [2, { // http://eslint.org/docs/rules/new-cap
"newIsCap": true,
"capIsNewExceptions": ["Map", "List", "OrderedMap", "Set", "Range", "Iterable"]
}],
"react/no-multi-comp": 0,
"react/jsx-no-bind": 0,
"react/jsx-closing-bracket-location": 0,
"quote-props": 0,
"no-nested-ternary": 0,
"no-restricted-syntax": 0,
"no-continue": 0
}
}