-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
executable file
·35 lines (35 loc) · 1.16 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
30
31
32
33
34
35
module.exports = {
"env": {
"browser": true,
"jquery": true
},
"extends": ["eslint:recommended", "google", "plugin:react/recommended"],
"plugins": [
"react"
],
"rules": {
"keyword-spacing": 1,
"no-var": "off",
"camelcase": "off",
"max-len": "off",
"indent": "off",
"quotes": [2, "single", "avoid-escape"],
"linebreak-style": [
"error",
"unix"
],
},
"settings": {
"react": {
"createClass": "createReactClass", // Regex for Component Factory to use,
// default to "createReactClass"
"pragma": "React", // Pragma to use, default to "React"
"version": "15.0", // React version, default to the latest React stable release
"flowVersion": "0.53" // Flow version
},
"propWrapperFunctions": [ "forbidExtraProps" ] // The names of any functions used to wrap the
// propTypes object, e.g. `forbidExtraProps`.
// If this isn't set, any propTypes wrapped in
// a function will be skipped.
}
};