forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.yml
63 lines (47 loc) · 1.15 KB
/
.eslintrc.yml
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
---
extends: airbnb/base
env:
browser: true
commonjs: true
es6: true
rules:
brace-style:
- error
- stroustrup
comma-dangle:
- error
- only-multiline
curly:
- error
- multi-or-nest
func-names: off
indent:
- error
- tab
- { "SwitchCase": 1 }
max-len: warn
new-cap: off
no-confusing-arrow: off
no-console: off
no-extend-native: off
no-global-assign: warn
no-mixed-operators: off
no-nested-ternary: off
no-param-reassign: off
no-prototype-builtins: warn
no-restricted-syntax: off
no-return-assign: off
no-undef: warn
no-underscore-dangle: off
no-unsafe-negation: warn
no-unused-expressions: warn
no-use-before-define: off
object-shorthand: off
one-var: off
prefer-const: off
prefer-rest-params: off
prefer-template: off
space-infix-ops: warn
quotes:
- error
- double