forked from microsoft/vscode-java-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
38 lines (38 loc) · 972 Bytes
/
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
34
35
36
37
38
{
"extends": "tslint:latest",
"rules": {
"variable-name": [
true,
"allow-leading-underscore"
],
"no-unused-expression": true,
"no-duplicate-variable": true,
"max-classes-per-file": [
false
],
"no-implicit-dependencies": [true, "dev"],
"no-empty": false,
"object-literal-sort-keys": false,
"curly": true,
"class-name": true,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
],
"semicolon": [
"always"
],
"triple-equals": true,
"max-line-length": [
true,
150
],
"no-angle-bracket-type-assertion": false,
"no-console": ["log","error"]
}
}