mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* Refactor i18n approach * chore: move to shared * chore: add default * create DialogService and update LoadingService (#2876) * complete translation infra for ui project, currently broken * cleanup and more dictionaries * chore: fix --------- Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com> Co-authored-by: Matt Hill <mattnine@protonmail.com>
35 lines
736 B
JSON
35 lines
736 B
JSON
{
|
|
"rules": {
|
|
"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", "avoid-escape"]
|
|
}
|
|
}
|