-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
56 lines (56 loc) · 1.26 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
{
"extends": [
"tslint:latest",
"tslint-microsoft-contrib/recommended_ruleset"
],
"jsRules": {},
"rules": {
"no-import-side-effect": [true, {"ignore-module": "reflect-metadata"}],
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"completed-docs": false,
"missing-jsdoc": false,
"no-empty-interface": false,
"ordered-imports": false,
"arrow-parens": [
true
],
"arrow-return-shorthand": [
true
],
"curly": true,
"export-name": false,
"import-name": false,
"interface-over-type-literal": true,
"linebreak-style": [
"LF",
true
],
"no-any": false,
"no-default-export": false,
"no-internal-module": true,
"no-magic-numbers": true,
"no-misused-new": true,
"no-relative-imports": false,
"no-unnecessary-initializer": true,
"no-unsafe-any": false,
"no-string-literal": false,
"prefer-function-over-method": true,
"prefer-method-signature": true,
"typedef": [
true,
"parameter",
"property-declaration",
"member-variable-declaration"
]
},
"linterOptions": {
"exclude": [
"**/*.test.ts",
"**/testhelper.ts"
]
},
"rulesDirectory": [
"node_modules/tslint-microsoft-contrib"
]
}