forked from gilbarbara/react-joyride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
95 lines (95 loc) · 2.95 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"mocha": true
},
"rules": {
"arrow-body-style": [1, "as-needed"],
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"camelcase": 0,
"class-methods-use-this": 0,
"comma-dangle": 0,
"dot-notation": 1,
"global-require": 0,
"indent": [1, 2, { "SwitchCase": 1 }],
"max-len": 0,
"newline-per-chained-call": [1, { "ignoreChainWithDepth": 5 }],
"no-case-declarations": 1,
"no-duplicate-imports": 2,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"no-multi-spaces": [1, { "exceptions": { "VariableDeclarator": true, "Property": false } }],
"no-nested-ternary": 1,
"no-param-reassign": [1, { "props": false }],
"no-trailing-spaces": 1,
"no-unused-vars": 1,
"object-shorthand": [1, "always"],
"one-var": 1,
"padded-blocks": 1,
"prefer-const": 1,
"prefer-template": 1,
"quotes": [1, "single", "avoid-escape"],
"require-jsdoc": [
0,
{ "require": { "FunctionDeclaration": true, "MethodDefinition": false, "ClassDeclaration": false } }
],
"space-before-function-paren": [1, "never"],
"space-in-parens": 1,
"spaced-comment": [1, "always", { "exceptions": ["-+"], "markers": ["eslint-disable", "eslint-disable-line"] }],
"valid-jsdoc": [
1,
{
"prefer": { "return": "returns" },
"requireReturn": false,
"requireParamDescription": false,
"requireReturnDescription": false
}
],
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/no-static-element-interactions": 0,
"import/no-extraneous-dependencies": [2, { "devDependencies": true }],
"jsx-quotes": 1,
"react/forbid-prop-types": 0,
"react/jsx-closing-bracket-location": [1, "after-props"],
"react/jsx-filename-extension": 0,
"react/jsx-indent-props": [1, 2],
"react/jsx-key": 1,
"react/jsx-max-props-per-line": [1, { "maximum": 4 }],
"react/jsx-boolean-value": 0,
"react/jsx-no-duplicate-props": 1,
"react/jsx-pascal-case": 1,
"react/no-danger": 0,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-direct-mutation-state": 1,
"react/no-unescaped-entities": 0,
"react/prefer-stateless-function": 0,
"react/prop-types": 2,
"react/sort-prop-types": 1,
"react/sort-comp": [
1,
{
"order": ["constructor", "lifecycle", "everything-else", "render"],
"groups": {
"lifecycle": [
"statics",
"contextTypes",
"childContextTypes",
"getChildContext",
"propTypes",
"defaultProps",
"shouldComponentUpdate",
"componentWillMount",
"componentDidMount",
"componentWillReceiveProps",
"componentWillUpdate",
"componentDidUpdate",
"componentWillUnmount"
]
}
}
]
}
}