forked from runejs/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (33 loc) · 1.22 KB
/
tslint.json
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
{
"rules": {
"max-line-length": false,
"member-ordering": [
true,
{
"order": [
"public-static-field",
"public-instance-field",
"public-constructor",
"protected-constructor",
"private-constructor",
"public-static-method",
"public-instance-method"
]
}
],
"no-reference": true,
"no-var-requires": true,
"promise-function-async": [true, "check-function-declaration", "check-function-expression", "check-arrow-function",
"check-method-declaration"],
"no-async-without-await": true,
"no-var-keyword": true,
"prefer-const": true,
"quotemark": [true, "single"],
"import-spacing": true,
"indent": [true, "spaces", 4],
"semicolon": true,
"whitespace": [true, "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread",
"check-type", "check-typecast", "check-type-operator", "check-preblock"],
"typedef": [true, "call-signature", "parameter", "property-declaration"]
}
}