-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.yaml
55 lines (55 loc) · 864 Bytes
/
.eslintrc.yaml
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
env:
browser: true
node: true
mocha: true
es6: true
extends: eslint:recommended
rules:
indent:
- warn
- 2
- SwitchCase: 1
semi:
- error
- never
linebreak-style:
- error
- unix
space-before-function-paren:
- error
- anonymous: always
named: never
asyncArrow: always
no-bitwise: error
curly:
- error
- all
nonblock-statement-body-position:
- error
- below
brace-style:
- error
- stroustrup
eqeqeq: warn
no-use-before-define:
- error
- functions: false
complexity:
- error
- 7
quotes:
- error
- single
- avoidEscape: true
comma-dangle:
- error
- always-multiline
no-unused-vars:
- error
- args: none
object-curly-spacing:
- error
- always
no-console: off
no-trailing-spaces: error
no-redeclare: off