-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtslint.json
More file actions
23 lines (23 loc) · 562 Bytes
/
tslint.json
File metadata and controls
23 lines (23 loc) · 562 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"semicolon":false,
"no-trailing-whitespace":false,
"curly":false,
"no-console":false,
"one-line":false,
"member-access": false,
"triple-equals":false,
"arrow-parens": false,
"no-consecutive-blank-lines": false,
"only-arrow-functions": false,
"whitespace":false,
"prefer-const":false,
"quotemark":false
},
"rulesDirectory": []
}