-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
57 lines (56 loc) · 1.52 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
/**
* This starter project recommended using Microsoft TSLint rules.
* Please see https://github.com/Microsoft/tslint-microsoft-contrib for more details.
*/
{
"extends": [
"tslint-microsoft-contrib"
],
"rules": {
"mocha-no-side-effect-code": false,
"no-multiline-string": false,
"no-unused-expression": false,
"no-empty": false,
"space-within-parens": false,
"no-console": false,
"no-useless-files": false,
"prefer-for-of": false,
"function-name": false,
"no-submodule-imports": false,
"no-object-literal-type-assertion": false, // TO DO: Get rid of this after TS supports generic spread operator
"prefer-array-literal": false,
"align": false,
"no-suspicious-comments": false,
"no-unnecessary-callback-wrapper": false,
"variable-name": false,
"one-line": false,
"no-increment-decrement": false,
"prefer-template": false,
"semicolon": false,
"ordered-imports": false,
"no-trailing-whitespace": false,
"interface-name": false,
"newline-before-return": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"export-name": false,
"promise-function-async": false,
"no-void-expression": false,
"no-redundant-jsdoc": false,
"prefer-type-cast": false,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"typedef": [
true,
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
]
}
}