-
Notifications
You must be signed in to change notification settings - Fork 10
/
tslint.json
37 lines (37 loc) · 1.35 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"indent": [true, "spaces", 4],
"linebreak-style": [true, "LF"],
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"no-var-keyword": true,
"prefer-const": true,
"curly": true,
"no-trailing-whitespace": [true, "ignore-jsdoc"],
"object-literal-key-quotes": [true, "as-needed"],
"space-before-function-paren": [true, "never"],
"whitespace": [true, "check-branch", "check-operator", "check-separator", "check-typecast"],
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"max-line-length": [false],
"array-type": [true, "array-simple"],
"triple-equals": false,
"class-name": true,
"interface-name": [true, "never-prefix"],
"jsdoc-format": true,
"no-namespace": false,
"new-parens": true,
"only-arrow-functions": false,
"one-variable-per-declaration": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"member-access": [true, "no-public"],
"eofline": true,
"one-line": [true, "check-open-brace", "check-whitespace"],
"no-console": false
},
"rulesDirectory": []
}