forked from xmindltd/xmind-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (47 loc) · 1.54 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
{
"linterOptions": {
"exclude": ["**/test/**/**", "dist", "docs"]
},
"rules": {
"no-inferrable-types": true,
"no-namespace": [true, "allow-declarations"],
"semicolon": [true, "always", "ignore-interfaces"],
"no-non-null-assertion": true,
"no-unnecessary-type-assertion": false,
"promise-function-async": false,
"await-promise": false,
"ban": false,
"quotemark": [true, "single"],
"no-implicit-dependencies": false,
"member-access": false,
"no-var-requires": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"arrow-parens": false,
"no-string-literal": false,
"no-submodule-imports": false,
"max-line-length": false,
"no-empty": [true, "allow-empty-functions"],
"no-empty-interface": false,
"no-console": false,
"space-before-function-paren": [ true, "asyncArrow" ],
"no-shadowed-variable": false,
"max-classes-per-file": false,
"forin": false,
"only-arrow-functions": false,
"member-ordering": false,
"no-unnecessary-initializer": false,
"no-this-assignment": [true, {"allowed-names": ["^self$"], "allow-destructuring": true}],
"trailing-comma": [true, {"multiline": {"imports": "ignore"}}],
"interface-name": false,
"variable-name": false,
"switch-final-break": false,
"return-undefined": false,
"prefer-while": false,
"prefer-template": false,
"prefer-method-signature": false,
"prefer-object-spread": false,
"prefer-function-over-method": false,
"prefer-conditional-expression": false
}
}