-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
38 lines (33 loc) · 1014 Bytes
/
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
{
"rules": {
// TypeScript Specific
"adjacent-overload-signatures": true,
"member-access": [ true, "check-accessor", "check-constructor" ],
"no-inferrable-types": true,
"no-internal-module": true,
"no-var-requires": true,
// Functionality
"curly": true,
"no-console": [ true, "log", "error", "debug" ],
"no-debugger": true,
"no-eval": true,
"no-unused-expression": true,
"no-var-keyword": true,
// Maintainability
"eofline": true,
"indent": [ true, "spaces" ],
"linebreak-style": [ true, "LF" ],
"no-trailing-whitespace": true,
// Style
"class-name": true,
"comment-format": [ true, "check-space" ],
"jsdoc-format": true,
"ordered-imports": true,
"semicolon": [ true, "always" ],
"variable-name": [ true, "ban-keywords", "check-format" ],
"whitespace": [ true,
"check-branch", "check-decl", "check-module",
"check-operator", "check-separator", "check-type", "check-typecast"
]
}
}