-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
112 lines (112 loc) · 2.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
---
# Please keep alphabetic order
env:
node: true
extends:
- eslint:recommended
- prettier
- plugin:prettier/recommended
- plugin:@typescript-eslint/recommended
- plugin:security/recommended
- plugin:import/recommended
- plugin:import/typescript
parser: '@typescript-eslint/parser'
plugins:
- '@typescript-eslint'
- unused-imports
- import
- filenames
- security
root: true
rules:
'@typescript-eslint/explicit-module-boundary-types':
- error
'@typescript-eslint/naming-convention':
- warn
- format:
- camelCase
selector: variableLike
- format:
- camelCase
- UPPER_CASE
modifiers:
- const
selector: variable
- custom:
match: false
regex: ^(I[A-Z]|_I[A-Z])
format:
- PascalCase
selector: interface
- format:
- PascalCase
selector: typeLike
camelcase: 'off'
comma-dangle:
- error
- arrays: always-multiline
exports: always-multiline
functions: always-multiline
imports: always-multiline
objects: always-multiline
comma-spacing: error
complexity:
- error
- 12
eol-last: error
filenames/match-regex:
- 2
- ^([a-z.][a-z0-9.]*)(-[a-z0-9.]+)*|^[a-z]{2}-[A-Z]{2}$
- false
import/no-deprecated: warn
import/no-extraneous-dependencies: error
import/order:
- error
indent: 'off'
keyword-spacing: error
max-len:
- warn
- code: 160
no-async-promise-executor: 'off'
no-case-declarations: 'off'
no-dupe-class-members: 'off'
no-duplicate-imports:
- error
- includeExports: true
no-multiple-empty-lines:
- error
- max: 1
no-trailing-spaces: error
no-unused-vars: 'off'
no-use-before-define: 'off'
object-curly-spacing:
- error
- always
object-property-newline:
- error
- allowAllPropertiesOnSameLine: true
prefer-const: error
prettier/prettier: error
quotes:
- 2
- single
- allowTemplateLiterals: true
security/detect-new-buffer: error
security/detect-unsafe-regex: error
semi:
- error
- never
unused-imports/no-unused-imports: error
unused-imports/no-unused-vars: error
settings:
import/resolver:
node:
extensions:
- .js
- .jsx
- .ts
- .tsx
moduleDirectory:
- node_modules
paths:
- /usr/local/share/global_modules