-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
24 lines (24 loc) · 837 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
{
"extends": "tslint:recommended",
"rules": {
"triple-equals": [true, "allow-null-check"],
"indent": [true, "spaces", 4],
"arrow-parens": true,
"class-name": true,
"interface-name": [true, "always-prefix"],
"import-spacing": true,
"semicolon": [true, "always"],
"switch-final-break": [true, "always"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": ["check-branch", "check-decl", "check-operator", "check-module", "check-typecast", "check-preblock"],
"curly": true,
"no-empty": true,
"no-var-keyword": true,
"eofline": true,
"space-before-function-paren": true,
"no-var-requires": false,
"ordered-imports": ["any"],
"object-literal-sort-keys": false,
"no-string-literal": false
}
}