This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 278
/
.eslintrc.yaml
83 lines (83 loc) · 1.63 KB
/
.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
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
env:
browser: true
es2020: true
node: true
parserOptions:
sourceType: module
extends: 'eslint:recommended'
ignorePatterns:
- build/
- scripts/vendors/
- locales/
- config.example.js
rules:
array-callback-return: error
arrow-spacing: error
block-scoped-var: error
brace-style: error
camelcase:
- error
- properties: never
comma-dangle:
- error
- always-multiline
comma-spacing: error
comma-style: error
computed-property-spacing: error
curly: error
dot-notation: error
eol-last: error
eqeqeq: error
func-call-spacing: error
# guard-for-in: error
indent:
- error
- 3
- SwitchCase: 1
key-spacing: error
keyword-spacing: error
linebreak-style: error
lines-between-class-members: error
no-caller: error
no-multi-spaces:
- error
- ignoreEOLComments: true
no-self-compare: error
no-sequences: error
no-lonely-if: error
no-multiple-empty-lines: error
no-template-curly-in-string: error
no-trailing-spaces: error
no-unneeded-ternary: error
no-unused-expressions: error
no-useless-return: error
no-unused-vars:
- error
- args: none
ignoreRestSiblings: true
varsIgnorePattern: '^_'
no-var: error
object-curly-spacing:
- error
- always
one-var:
- error
- never
one-var-declaration-per-line: error
padded-blocks:
- error
- never
prefer-const: error
quotes:
- error
- single
require-await: error
semi: error
space-before-blocks: error
space-before-function-paren:
- error
space-in-parens: error
space-infix-ops: error
spaced-comment: error
strict: error
switch-colon-spacing: error