tabby/tslint.json

21 lines
284 B
JSON
Raw Normal View History

2016-12-23 17:06:53 +08:00
{
2017-05-01 19:35:26 +08:00
"extends": [
"tslint-eslint-rules",
"tslint-config-standard"
],
"rules": {
"radix": false,
"indent": [
true,
"spaces"
2017-03-24 05:13:32 +08:00
],
2017-05-01 19:35:26 +08:00
"ter-indent": [true, 4],
"trailing-comma": [
true,
{
"singleline": "never"
}
]
}
2016-12-23 17:06:53 +08:00
}