-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
27 lines (27 loc) · 834 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": {
"variable-name": [ true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore" ],
"trailing-comma": false,
"no-shadowed-variable": false,
"quotemark": [true, "single"],
"indent": [true, "spaces", 2],
"no-console": false,
"ordered-imports": false,
"max-classes-per-file": false,
"object-literal-sort-keys": false,
"typedef-whitespace": false,
"object-literal-shorthand": false,
"no-var-requires": false,
"space-before-function-paren": [false, {
"anonymous": "never",
"named": "never",
"asyncArrow": "never"
}]
},
"rulesDirectory": []
}