forked from microsoft/vscode-java-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
42 lines (42 loc) · 1.03 KB
/
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
39
40
41
42
{
"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": [
false,
"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": true,
"triple-equals": true,
"max-line-length": [
true,
150
],
"no-angle-bracket-type-assertion": false,
"no-console": [
true,
"log",
"error"
],
"no-submodule-imports": false
}
}