forked from microsoftgraph/msgraph-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
21 lines (21 loc) · 745 Bytes
/
tslint.json
File metadata and controls
21 lines (21 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"interface-name": [true, "never-prefix"],
"max-line-length": false,
"no-implicit-dependencies": [true, "dev"],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"grouped-imports": true
}
],
"member-ordering": [
true,
{
"order": ["private-static-field", "protected-static-field", "public-static-field", "private-instance-field", "protected-instance-field", "public-instance-field", "private-static-method", "protected-static-method", "public-static-method", "private-constructor", "protected-constructor", "public-constructor", "private-instance-method", "protected-instance-method", "public-instance-method"]
}
]
}
}