-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 741 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 741 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"callable-types": false,
"interface-name": [true, "never-prefix"],
"linebreak-style": [true, "LF"],
"max-line-length": [true, 100],
"member-access": false,
"no-consecutive-blank-lines": [true, 2],
"no-console": false,
"no-empty-interface": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"ordered-imports": false,
"quotemark": [true, "single"],
"space-before-function-paren": [true, "always"],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}]
},
"rulesDirectory": []
}