forked from microsoft/vscode-deploy-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
66 lines (66 loc) · 1.5 KB
/
tslint.json
File metadata and controls
66 lines (66 loc) · 1.5 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"rulesDirectory": [
"node_modules/tslint-microsoft-contrib"
],
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [
true,
"always"
],
"triple-equals": false,
"no-banned-terms": true,
"no-delete-expression": true,
"no-document-domain": true,
"no-disable-auto-sanitization": true,
"no-duplicate-parameter-names": true,
"no-exec-script": true,
"no-function-constructor-with-string-args": true,
"no-octal-literal": true,
"no-reserved-keywords": true,
"no-string-based-set-immediate": true,
"no-string-based-set-interval": true,
"no-string-based-set-timeout": true,
"no-eval": true,
"quotemark": false,
"no-relative-imports": false,
"max-line-length": [
true,
{
"limit": 135,
"ignore-pattern": "^import [^,]+ from |^export | implements"
}
],
"trailing-comma": false,
"one-line": false,
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive"
}
],
"no-constant-condition": [
true,
{
"checkLoops": false
}
],
"no-angle-bracket-type-assertion": false,
"object-literal-sort-keys": false,
"prefer-type-cast": false,
"function-name": false,
"max-classes-per-file": false,
"no-backbone-get-set-outside-model": false,
"non-literal-fs-path": false
},
"defaultSeverity": "warning",
"extends": [
"tslint-microsoft-contrib/recommended",
"tslint:recommended"
]
}