forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
102 lines (93 loc) · 2.54 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
96
97
98
99
100
101
102
# So parent files don't get applied
root: true
env:
es6: true
browser: true
node: true
rules:
# Errors
array-bracket-spacing: [2, never]
arrow-spacing: 2
block-spacing: [2, always]
brace-style: 0 # Wishlist, one day
comma-dangle: [2, always-multiline]
comma-style: [2, last]
computed-property-spacing: [2, never]
consistent-this: [2, self]
consistent-return: 0
dot-notation: 2
dot-location: [2, property]
eqeqeq: [2, smart]
eol-last: 2
indent: [2, 2, {SwitchCase: 1}]
jsx-quotes: [2, prefer-double]
key-spacing: 0 # Wishlist, one day
max-len: [0, 120, 4] # Wishlist, one day
new-cap: [0, {capIsNew: true, newIsCap: true}] # Wishlist, one day
no-unused-expressions: 2
no-unused-vars: 2
no-shadow: 0 # Wishlist, one day
no-spaced-func: 2
no-multi-spaces: 2
no-undef: 2
no-empty-pattern: 2
no-dupe-keys: 2
no-dupe-args: 2
no-duplicate-case: 2
no-cond-assign: 2
no-extra-semi: 2
no-extra-boolean-cast: 2
no-trailing-spaces: 2
no-unreachable: 2
no-var: 2
object-curly-spacing: [2, never]
prefer-arrow-callback: 0 # Wishlist, one day
prefer-const: 0 # Wishlist, one day
quotes: [2, single, avoid-escape]
semi: [2, always]
space-after-keywords: [2, always]
space-before-blocks: [2, always]
space-before-function-paren: [2, never]
space-before-keywords: [2, always]
space-infix-ops: 2
space-return-throw-case: 2
space-unary-ops: [0, { words: true, nonwords: false }] # Wishlist, one day
yoda: 2
# Disabled
strict: 0
# React
react/display-name: [2, {acceptTranspilerName: true}]
react/jsx-boolean-value: [2, always]
react/jsx-curly-spacing: 2
react/jsx-indent-props: [0, 2] # Wishlist, one day
react/jsx-max-props-per-line: [2, {maximum: 4}]
react/jsx-no-duplicate-props: 2
react/jsx-no-literals: 0 # Wishlist, one day
react/jsx-no-undef: 2
react/jsx-sort-prop-types: 2
react/jsx-uses-react: 2
react/jsx-uses-vars: 2
react/no-danger: 2
react/no-did-mount-set-state: 2
react/no-did-update-set-state: 2
react/no-direct-mutation-state: 2
react/no-multi-comp: 0 # Wishlist, one day
react/no-unknown-property: 2
react/prop-types: 2
react/react-in-jsx-scope: 2
react/require-extension: 2
react/self-closing-comp: 2
react/sort-comp: 0 # Wishlist, one day
react/wrap-multilines: 0 # Wishlist, one day
# Disabled
react/jsx-no-bind: 0
react/jsx-closing-bracket-location: 0
react/jsx-sort-props: 0
react/no-set-state: 0
parser: babel-eslint
plugins:
- react
# extends: eslint:recommended # Whishlist, one day
ecmaFeatures:
jsx: true
modules: true