-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 791 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"whitespace": true,
"trailing-comma": false,
"arrow-parens": false,
"one-variable-per-declaration": false,
"no-trailing-whitespace": false,
"no-empty": false,
"only-arrow-functions": false,
"interface-name": false,
"max-line-length": [false],
"max-classes-per-file": false,
"object-literal-sort-keys": false,
"no-string-literal": false,
"ordered-imports": false,
"no-console": false,
"space-before-function-paren": [true, "always"],
"quotemark": {
"options": ["single", "avoid-escape"]
}
},
"rulesDirectory": []
}