forked from microsoft/vscode-arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.32 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
43
44
45
46
47
{
"extends": "tslint:latest",
"rules": {
"no-var-requires": false,
"variable-name": [
true,
"allow-leading-underscore"
],
"no-unused-expression": true,
"no-duplicate-variable": true,
"max-classes-per-file": [
false
],
"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-implicit-dependencies": [true, "dev", ["vscode"]],
"no-string-literal": false,
"no-object-literal-type-assertion": false,
"no-invalid-template-strings": false,
"no-submodule-imports": false,
"prefer-conditional-expression": false,
"no-return-await": false,
"no-shadowed-variable": false,
"no-duplicate-imports": false,
"array-type": false
}
}