forked from xojs/eslint-config-xo-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
68 lines (68 loc) · 2.13 KB
/
index.js
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
'use strict';
module.exports = {
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
plugins: [
'inferno'
],
rules: {
'inferno/display-name': 'error',
'inferno/forbid-component-props': 'error',
'inferno/forbid-elements': 'error',
'inferno/no-array-index-key': 'error',
'inferno/no-children-prop': 'error',
'inferno/no-deprecated': 'error',
'inferno/no-did-update-set-state': 'error',
'inferno/no-direct-mutation-state': 'error',
'inferno/no-find-dom-node': 'error',
'inferno/no-is-mounted': 'error',
'inferno/no-render-return-value': 'error',
'inferno/no-string-refs': 'error',
'inferno/no-unescaped-entities': 'error',
'inferno/no-unknown-property': 'error',
'inferno/no-unused-prop-types': 'error',
'inferno/prop-types': 'error',
'inferno/inferno-in-jsx-scope': 'error',
'inferno/self-closing-comp': 'error',
'inferno/style-prop-object': 'error',
'inferno/void-dom-elements-no-children': 'error',
'inferno/jsx-boolean-value': 'error',
'inferno/jsx-closing-bracket-location': ['error', 'props-aligned'],
'inferno/jsx-curly-spacing': ['error', 'never'],
'inferno/jsx-equals-spacing': ['error', 'never'],
'inferno/jsx-first-prop-new-line': ['error', 'multiline'],
'inferno/jsx-handler-names': 'error',
'inferno/jsx-indent': ['error', 'tab'],
'inferno/jsx-indent-props': ['error', 'tab'],
'inferno/jsx-key': 'error',
'inferno/jsx-max-props-per-line': ['error', {
maximum: 1,
when: 'multiline'
}],
'inferno/jsx-no-bind': 'error',
'inferno/jsx-no-comment-textnodes': 'error',
'inferno/jsx-no-duplicate-props': ['error', {
ignoreCase: true
}],
'inferno/jsx-no-target-blank': 'error',
'inferno/jsx-no-undef': 'error',
'inferno/jsx-pascal-case': 'error',
'inferno/jsx-sort-props': ['error', {
callbacksLast: true,
shorthandFirst: true,
noSortAlphabetically: true
}],
'inferno/jsx-space-before-closing': ['error', 'never'],
'inferno/jsx-tag-spacing': ['error', {
closingSlash: 'never',
beforeSelfClosing: 'never',
afterOpening: 'never'
}],
'inferno/jsx-uses-inferno': 'error',
'inferno/jsx-uses-vars': 'error',
'inferno/jsx-wrap-multilines': 'error'
}
};