forked from oliviertassinari/react-swipeable-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
107 lines (98 loc) · 2.31 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
103
104
105
106
107
---
parser: babel-eslint
root: true
env:
browser: true
node: true
mocha: true
es6: true
plugins:
- react
ecmaFeatures:
jsx: true
globals:
cordova: false
emit: false
browser: true
VERSION: false
CONFIG_NAME: false
PLATFORM: false
rules:
# Errors
array-bracket-spacing: [2, never]
arrow-spacing: 2
block-spacing: [2, always]
max-len: [2, 120, 4]
indent: [2, 2, {SwitchCase: 1}]
quotes: [2, single, avoid-escape]
comma-dangle: [2, always-multiline]
computed-property-spacing: [2, never]
brace-style: 2
consistent-this: [2, self]
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: [1, { words: true, nonwords: false }]
eol-last: 2
eqeqeq: [2, smart]
yoda: 2
no-unused-expressions: 2
no-unused-vars: 2
dot-notation: 2
dot-location: [2, property]
consistent-return: 2
no-shadow: 2
no-extra-semi: 2
no-spaced-func: 2
no-multi-spaces: 2
no-undef: 2
no-empty-pattern: 2
key-spacing: 2
semi: [2, always]
new-cap: [2, {capIsNew: true, newIsCap: true}]
no-trailing-spaces: 2
comma-style: [2, last]
no-unreachable: 2
no-var: 2
prefer-const: 2
jsx-quotes: [2, prefer-double]
object-curly-spacing: [2, never]
prefer-arrow-callback: 2
# Disabled
no-magic-numbers: 0
camelcase: 0
no-underscore-dangle: 0
handle-callback-err: 0
strict: 0
# React errors
react/display-name: [2, {acceptTranspilerName: true}]
react/jsx-boolean-value: [2, always]
react/jsx-curly-spacing: 2
react/jsx-indent-props: [2, 2]
react/jsx-max-props-per-line: [2, {maximum: 4}]
react/jsx-no-duplicate-props: 2
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-update-set-state: 2
react/no-direct-mutation-state: 2
react/no-multi-comp: 2
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: 2
react/wrap-multilines: 2
# Disabled
react/no-did-mount-set-state: 0
react/jsx-no-literals: 0
react/jsx-no-bind: 0
react/jsx-closing-bracket-location: 0
react/jsx-sort-props: 0
react/no-set-state: 0