Files
start-os/ui/tslint.json
Alex Inkin 5e681aa3fb refactor(app-show): refactor component (#961)
* refactor(app-show): refactor component

* chore: remove precommit hook for the time being

* chore: fix mutation by spreading

Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
2022-01-21 20:35:52 -07:00

46 lines
812 B
JSON

{
"rules": {
"no-unused-variable": true,
"no-unused-expression": true,
"semicolon": [
true,
"never"
],
"no-trailing-whitespace": true,
"indent": [
true,
"spaces",
2
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "never"
},
"singleline": "never"
}
],
"quotemark": [
true,
"single"
]
}
}