-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.fixable.js
85 lines (79 loc) · 3.32 KB
/
eslint.fixable.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
module.exports = {
rules: {
/** Possible Errors */
'no-extra-boolean-cast': 'error',
'no-extra-parens': ['error', 'all', { ignoreJSX: 'multi-line' }],
'no-extra-semi': 'error',
'no-regex-spaces': 'error',
'no-unsafe-negation': 'error',
/** Best Practices */
curly: 'error',
'dot-location': ['error', 'property'],
'dot-notation': 'error',
eqeqeq: 'error',
'no-div-regex': 'error',
'no-else-return': 'error',
'no-extra-bind': 'error',
'no-extra-label': 'error',
'no-floating-decimal': 'error',
'no-implicit-coercion': 'error',
'no-multi-spaces': 'error',
'no-unused-labels': 'error',
'no-useless-return': 'error',
'wrap-iife': 'error',
yoda: 'error',
/** Strict Mode */
strict: 'error',
/** Variables */
'no-undef-init': 'error',
/** ECMAScript 6 */
// 'arrow-body-style': 'error',
// 'arrow-parens': 'error',
// 'arrow-spacing': 'error',
// 'generator-star-spacing': 'error',
// 'no-confusing-arrow': 'error',
// 'no-useless-computed-key': 'error',
// 'no-useless-rename': 'error',
// 'no-var': 'error',
// 'object-shorthand': 'error',
// 'prefer-arrow-callback': 'error',
'prefer-const': 'error',
// 'prefer-destructuring': 'error',
// 'prefer-numeric-literals': 'error',
'prefer-template': 'error',
// 'rest-spread-spacing': 'error',
// 'sort-imports': 'error',
// 'react/jsx-boolean-value': 'error',
// 'react/jsx-closing-bracket-location': 'error',
// 'react/jsx-closing-tag-location': 'error',
// 'react/jsx-curly-newline': 'error',
// 'react/jsx-curly-spacing': 'error',
// 'react/jsx-equals-spacing:': 'error',
// 'react/jsx-first-prop-new-line': 'error',
// 'react/jsx-indent': 'error',
// 'react/jsx-indent-props': 'error',
// 'react/jsx-max-props-per-line': 'error',
// 'react/jsx-props-no-multi-spaces': 'error',
// 'react/jsx-sort-props': 'error',
// 'react/jsx-space-before-closing': 'error',
// 'react/jsx-tag-spacing': 'error',
// 'react/jsx-wrap-multilines': 'error',
// '@typescript-eslint/array-type': 'error',
// '@typescript-eslint/ban-types': 'error',
// '@typescript-eslint/func-call-spacing': 'error',
// '@typescript-eslint/indent': 'error',
// '@typescript-eslint/member-delimiter-style': 'error',
// '@typescript-eslint/no-array-constructor': 'error',
// '@typescript-eslint/no-extra-parens': 'error',
// '@typescript-eslint/no-inferrable-types': 'error',
// '@typescript-eslint/no-unnecessary-qualifier': 'error',
// '@typescript-eslint/no-unnecessary-type-assertion': 'error',
// '@typescript-eslint/prefer-function-type': 'error',
// '@typescript-eslint/prefer-includes': 'error',
// '@typescript-eslint/prefer-interface': 'error',
// '@typescript-eslint/prefer-namespace-keyword': 'error',
// '@typescript-eslint/prefer-string-starts-ends-with': 'error',
// '@typescript-eslint/semi': 'error',
// '@typescript-eslint/type-annotation-spacing': 'error',
},
};