forked from microsoft/types-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
50 lines (47 loc) · 1.53 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
{
"extends": "tslint:all",
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": [true, "check-space"],
"indent": [true, "tabs"],
"max-line-length": [true, 150],
"only-arrow-functions": [true, "allow-declarations"],
"binary-expression-operand-order": false, //TODO: false positive
"cyclomatic-complexity": false, // TODO
"no-unsafe-any": false, //TODO
"strict-boolean-expressions": false, //TODO
"match-default-export-name": false, //TODO
"no-unbound-method": false, //TODO: false positives
"no-inferred-empty-object-type": false, //TODO: false positive
"no-shadowed-variable": false, //TODO
"no-unnecessary-type-assertion": false, //TODO: false positive
"no-this-assignment": [true, { "allow-destructuring": true }],
"typedef": [true, "call-signature"],
"completed-docs": false,
"forin": false,
"interface-name": false,
"linebreak-style": false,
"max-classes-per-file": false,
"member-access": false,
"member-ordering": false,
"newline-before-return": false,
"no-any": false,
"no-bitwise": false,
"no-console": false,
"no-default-export": false,
"no-unused-variable": false,
"no-magic-numbers": false,
"no-namespace": false,
"no-non-null-assertion": false,
"no-use-before-declare": false,
"no-parameter-properties": false,
"no-require-imports": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"promise-function-async": false,
"switch-default": false,
"trailing-comma": false,
"type-literal-delimiter": false,
"variable-name": false
}
}