forked from threema-ch/threema-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
17 lines (17 loc) · 827 Bytes
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"extends": "tslint:recommended",
"rules": {
"file-header": [true, "This file is part of Threema Web."],
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"member-ordering": false,
"no-namespace": [true, "allow-declarations"],
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"quotemark": [true, "single", "avoid-escape"],
"indent": [true, "spaces"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-type-operator", "check-preblock"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
}
}