-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yaml
93 lines (74 loc) · 2.3 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
84
85
86
87
88
89
90
91
92
93
# ESLint at project-level as linting settings may differ between browser-based and node-based projects.
# Prettier at repository-level as formatting settings will be the same across all projects.
# IMPORTANT: Sync with all other '.eslintrc.yaml' files!
root: true
parser: "@typescript-eslint/parser"
parserOptions:
project: "./tsconfig.json"
plugins:
- "@typescript-eslint"
rules:
"no-else-return": error
"object-shorthand": error
"@typescript-eslint/no-var-requires": error
"@typescript-eslint/no-redeclare": off
"@typescript-eslint/member-ordering":
- error
- default:
order: alphabetically
memberTypes:
# Index signature
- "signature"
# Fields
- "public-static-field"
- "protected-static-field"
- "private-static-field"
- "public-decorated-field"
- "protected-decorated-field"
- "private-decorated-field"
- "public-instance-field"
- "protected-instance-field"
- "private-instance-field"
- "public-abstract-field"
- "protected-abstract-field"
- "private-abstract-field"
- "public-field"
- "protected-field"
- "private-field"
- "static-field"
- "instance-field"
- "abstract-field"
- "decorated-field"
- "field"
# Constructors
- "public-constructor"
- "protected-constructor"
- "private-constructor"
- "constructor"
# Methods
- "public-static-method"
- "protected-static-method"
- "public-decorated-method"
- "protected-decorated-method"
- "public-instance-method"
- "protected-instance-method"
- "public-abstract-method"
- "protected-abstract-method"
- "public-method"
- "protected-method"
- "private-static-method"
- "private-decorated-method"
- "private-instance-method"
- "private-abstract-method"
- "private-method"
- "static-method"
- "instance-method"
- "abstract-method"
- "decorated-method"
- "method"
extends:
- standard-with-typescript
- prettier
- prettier/@typescript-eslint
env:
node: true