This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rpgedit/tslint.json

19 lines
478 B
JSON
Raw Normal View History

2018-10-24 01:26:15 +02:00
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
2018-11-05 01:28:35 +01:00
"curly": false,
2018-10-24 01:26:15 +02:00
"indent": [true, "tabs"],
"interface-name": false,
"max-classes-per-file": false,
2018-10-24 01:26:15 +02:00
"no-bitwise": false,
2018-11-09 13:27:49 +01:00
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
2018-10-24 01:26:15 +02:00
"quotemark": [true, "single", "avoid-escape", "avoid-template"]
},
"rulesDirectory": []
}