forked from davidchin/react-input-range
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
43 lines (43 loc) · 659 Bytes
/
.eslintrc
File metadata and controls
43 lines (43 loc) · 659 Bytes
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
rules:
class-methods-use-this:
- 1
consistent-return:
- 0
import/prefer-default-export:
- 0
indent:
- 2
- 2
max-len:
- 0
no-plusplus:
- 2
- allowForLoopAfterthoughts: true
quotes:
- 2
- single
semi:
- 2
- always
jsx-a11y/no-static-element-interactions:
- 0
react/jsx-closing-bracket-location:
- 2
- after-props
react/require-default-props:
- 0
env:
es6: true
browser: true
jasmine: true
extends: airbnb
ecmaFeatures:
jsx: true
experimentalObjectRestSpread: true
modules: true
parser: babel-eslint
parserOptions:
ecmaFeatures:
jsx: true
plugins:
- react