-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
55 lines (55 loc) · 1.06 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
env:
commonjs: true
es2021: true
node: true
extends:
- airbnb-base
- plugin:ava/recommended
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: latest
plugins:
- '@typescript-eslint'
rules:
no-underscore-dangle:
- 0
space-before-function-paren:
- error
- always
strict:
- error
- global
no-console:
- 0
array-bracket-spacing:
- error
- always
- objectsInArrays: false
arraysInArrays: false
max-len:
- error
- 200
- 2
- ignoreUrls: true
ignoreComments: false
ignoreRegExpLiterals: true
ignoreStrings: true
ignoreTemplateLiterals: true
object-curly-newline:
- error
- ObjectExpression:
minProperties: 6
multiline: true
consistent: true
ObjectPattern:
minProperties: 6
multiline: true
consistent: true
ImportDeclaration:
minProperties: 6
multiline: true
consistent: true
ExportDeclaration:
minProperties: 6
multiline: true
consistent: true