-
Notifications
You must be signed in to change notification settings - Fork 17
/
tslint.json
42 lines (42 loc) · 1.15 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
{
"extends": "tslint:recommended",
"rulesDirectory": ["src/"],
"rules": {
"forin": false,
"no-empty": false,
"variable-name": false,
"import-spacing": false,
"ordered-imports": false,
"max-line-length": false,
"object-literal-sort-keys": false,
"quotemark": [true, "single", "avoid-escape"],
"no-console": false,
"member-ordering": false,
"max-classes-per-file": [false, 1],
"indent": [true, "spaces", 2],
"curly": false,
"space-before-function-paren": [true, "always"],
"one-variable-per-declaration": false,
"no-var-requires": false,
"no-shadowed-variable": false,
"no-irregular-whitespace": false,
"object-literal-key-quotes": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-typecast",
"check-type",
"check-type-operator",
"check-preblock"
],
"triple-equals": false,
"eofline": true,
"interface-name": [true, "always-prefix"],
"semicolon": [true, "always", "ignore-interfaces", "ignore-bound-class-methods"]
}
}