Files
archived-Trool/tslint.base.json
2021-05-14 11:11:22 -07:00

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]
}
}
}