-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
82 lines (82 loc) · 1.44 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
env:
browser: true
es6: true
node: true
extends:
- 'eslint:recommended'
- 'plugin:vue/essential'
parserOptions:
sourceType: 'module'
ecmaVersion: 2018
rules:
indent:
- error
- 4
linebreak-style:
- error
- unix
quotes:
- error
- single
semi:
- error
- always
no-console:
- error
no-unused-vars:
- error
-
args: none
ignoreRestSiblings: true
eol-last:
- error
- always
dot-location:
- error
- property
no-useless-return:
- error
consistent-this:
- error
- self
camelcase:
- error
comma-dangle:
- error
- always-multiline
brace-style:
- error
- 1tbs
- allowSingleLine: true
func-call-spacing:
- error
- never
block-spacing:
- error
- always
no-trailing-spaces:
- error
space-before-function-paren:
- error
- never
space-before-blocks:
- error
no-var:
- error
no-confusing-arrow:
- warn
no-unneeded-ternary:
- warn
no-multiple-empty-lines:
- warn
keyword-spacing:
- warn
no-extra-parens:
- warn
- all
consistent-return:
- warn
- treatUndefinedAsUnspecified: true
globals:
logger: false
_: false