forked from vauxite-org/typescript-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
18 lines (18 loc) · 885 Bytes
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"extends": "tslint:recommended",
"rules": {
"interface-name": false,
"max-classes-per-file": [true, 12],
"max-line-length": [true, 200],
"member-ordering": [true, { "order":
["private-static-field","protected-static-field","public-static-field","private-instance-field","protected-instance-field","public-instance-field",
"constructor","public-static-method","protected-static-method","public-instance-method","protected-instance-method","private-instance-method","private-static-method"
]
}
],
"one-line": [true, "check-open-brace", "check-whitespace"],
"ordered-imports": false,
"trailing-comma": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
}
}