-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
27 lines (27 loc) · 924 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case", "allow-trailing-underscore"],
"ordered-imports": [true,
{
"import-sources-order": "any",
"named-imports-order": "any"
}],
"space-before-function-paren": [true, "always"],
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"curly": [true, "ignore-same-line"],
"only-arrow-functions": [false],
"no-empty": [true, "allow-empty-functions"],
"no-console": [true, "error"],
"no-shadowed-variable": [false],
"object-literal-sort-keys": [false],
"no-bitwise": [false],
"interface-name": [false]
},
"rulesDirectory": []
}