-
-
Notifications
You must be signed in to change notification settings - Fork 419
Expand file tree
/
Copy pathtslint.json
More file actions
29 lines (29 loc) 路 523 Bytes
/
Copy pathtslint.json
File metadata and controls
29 lines (29 loc) 路 523 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
29
{
"extends": [
"tslint:recommended",
"tslint-plugin-prettier"
],
"rules": {
"prefer-for-of": false,
"prettier": [
true,
{
"singleQuote": false
}
],
"max-classes-per-file": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"arrow-parens": false,
"no-console": false,
"object-literal-key-quotes": false,
"max-line-length": {
"options": {
"limit": 260
}
}
},
"linterOptions": {
"exclude": []
}
}