forked from microsoft/tslint-microsoft-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
109 lines (108 loc) · 2.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"rules": {
"chai-vague-errors": true,
"export-name": true,
"use-isnan": true,
"jquery-deferred-must-complete": true,
"missing-jsdoc": true,
"missing-optional-annotation": true,
"mocha-avoid-only": true,
"no-backbone-get-set-outside-model": true,
"no-banned-terms": true,
"no-constant-condition": true,
"no-control-regex": true,
"no-cookies": true,
"no-delete-expression": true,
"no-document-write": true,
"no-disable-auto-sanitization": true,
"no-duplicate-case": true,
"no-duplicate-parameter-names": true,
"no-empty-interfaces": true,
"no-exec-script": true,
"no-function-constructor-with-string-args": true,
"no-function-expression": true,
"no-http-string": [true, "http://www.example.com/?.*", "http://www.examples.com/?.*"],
"no-increment-decrement": true,
"no-invalid-regexp": true,
"no-for-in": true,
"no-missing-visibility-modifiers": true,
"no-multiline-string": true,
"no-multiple-var-decl": true,
"no-unnecessary-bind": true,
"no-unnecessary-semicolons": true,
"no-octal-literal": true,
"no-regex-spaces": true,
"no-reserved-keywords": true,
"no-sparse-arrays": true,
"no-string-based-set-immediate": true,
"no-string-based-set-interval": true,
"no-string-based-set-timeout": true,
"no-unused-imports": true,
"no-with-statement": true,
"prefer-array-literal": true,
"promise-must-complete": true,
"react-no-dangerous-html": true,
"use-named-parameter": true,
"valid-typeof": true,
"class-name": true,
"curly": true,
"eofline": false,
"forin": true,
"indent": false,
"label-position": true,
"label-undefined": true,
"max-line-length": [true, 140],
"no-arg": true,
"no-bitwise": true,
"no-console": [true,
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-constructor-vars": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-comma": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": false,
"no-unused-import": false,
"no-unreachable": true,
"no-use-before-declare": true,
"no-var-requires": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"typedef": [true,
"callSignature",
"indexSignature",
"parameter",
"propertySignature",
"variableDeclarator",
"memberVariableDeclarator"],
"use-strict": false,
"variable-name": true,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
]
}
}