forked from dotnet/vscode-dotnet-runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 660 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "tslint:recommended",
"rules": {
"array-type": false,
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"no-namespace": false,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-classes-per-file": false,
"max-line-length": {
"options": {
"limit": 200
}
},
"no-any": true
}
}