mirror of
https://github.com/lingble/Trool.git
synced 2026-03-20 03:50:40 +00:00
20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rules": {
|
|
"max-line-length": {
|
|
"options": [100]
|
|
},
|
|
"lines-between-class-members": [true, 2],
|
|
"member-ordering": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"ordered-imports": false,
|
|
"quotemark": [true, "single"],
|
|
"variable-name": [true, "allow-leading-underscore"]
|
|
},
|
|
"jsRules": {
|
|
"max-line-length": {
|
|
"options": [100]
|
|
}
|
|
}
|
|
}
|