-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
127 lines (127 loc) · 3.51 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
extends: ['react-app', 'plugin:react/recommended'],
plugins: ['react', 'import'],
rules: {
//jsx workarounds
'jsx-a11y/href-no-hash': 'off',
'jsx-a11y/anchor-is-valid': ['warn', { aspects: ['invalidHref'] }],
// js code rules
'no-var': 'error',
'import/no-named-as-default': 'off',
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-unused-expressions': 0,
semi: ['error', 'never'],
'import/newline-after-import': ['error', { count: 2 }],
'object-curly-spacing': ['error', 'always'],
'object-shorthand': 'error',
'comma-dangle': ['error', 'only-multiline'],
indent: [
'error',
2,
{
SwitchCase: 1,
},
],
'keyword-spacing': ['error'],
'space-before-blocks': ['error', 'always'],
'no-whitespace-before-property': 'error',
'max-len': [
'error',
{
code: 150,
comments: 180,
ignoreUrls: true,
ignoreRegExpLiterals: true,
},
],
'object-property-newline': [
'error',
{ allowMultiplePropertiesPerLine: true },
],
'object-curly-newline': ['error', { multiline: true, consistent: true }],
'comma-spacing': ['error', { before: false, after: true }],
'brace-style': 'error',
'arrow-spacing': 'error',
'prefer-const': 'error',
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: ['class', 'const', 'let', 'var', 'return'],
},
{
blankLine: 'always',
prev: ['class', 'const', 'export', 'let', 'var'],
next: '*',
},
{
blankLine: 'never',
prev: ['let', 'var'],
next: ['let', 'var'],
},
{
blankLine: 'any',
prev: ['const'],
next: ['const'],
},
],
'key-spacing': 'error',
'no-multi-spaces': 'error',
'no-multiple-empty-lines': 'error',
'space-infix-ops': 'error',
'operator-linebreak': ['error', 'before'],
// React lint rules
'react/jsx-no-bind': [
'error',
{
allowArrowFunctions: true,
allowBind: false,
ignoreRefs: true,
},
],
'react/no-did-update-set-state': 'error',
'react/no-unknown-property': 'error',
'react/no-unused-prop-types': 'error',
'react/prop-types': 'error',
'react/react-in-jsx-scope': 'error',
'react/prop-types': [
'error',
{
ignore: ['t', 'className', 'classes', 'children'],
},
],
'react/jsx-tag-spacing': 'error',
'react/prefer-stateless-function': ['error'],
'react/require-render-return': ['error'],
'react/no-did-mount-set-state': ['error'],
'react/boolean-prop-naming': ['error'],
'react/no-find-dom-node': ['error'],
'react/default-props-match-prop-types': ['error'],
'react/jsx-first-prop-new-line': ['error', 'multiline-multiprop'],
'react/jsx-max-props-per-line': ['error', { maximum: 1, when: 'always' }],
'react/jsx-closing-tag-location': ['error'],
'react/jsx-closing-bracket-location': [1, 'line-aligned'],
'react/jsx-sort-props': [
'error',
{
shorthandFirst: true,
callbacksLast: true,
reservedFirst: true,
noSortAlphabetically: true,
},
],
'react/boolean-prop-naming': 'error',
'react/jsx-handler-names': [
'warn',
{
eventHandlerPrefix: '(handle|navigateTo|do|init)',
eventHandlerPropPrefix: '(on)',
},
],
},
globals: {
document: true,
window: true,
},
}