-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtslint.json
More file actions
19 lines (19 loc) · 878 Bytes
/
tslint.json
File metadata and controls
19 lines (19 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "tslint:recommended",
"rules": {
"file-header": [true, "Copyright \\(C\\) 2016-2021"],
"indent": [true, "spaces"],
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"member-ordering": false,
"no-console": [false],
"no-namespace": [true, "allow-declarations"],
"no-reference": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"quotemark": [true, "single", "avoid-escape"],
"variable-name": [true, "check-format", "allow-leading-underscore", "ban-keywords"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-typecast", "check-type-operator", "check-preblock"]
}
}