aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tslint.json')
-rw-r--r--webapp/tslint.json13
1 files changed, 10 insertions, 3 deletions
diff --git a/webapp/tslint.json b/webapp/tslint.json
index 9bfdcb2..7a10b10 100644
--- a/webapp/tslint.json
+++ b/webapp/tslint.json
@@ -6,8 +6,12 @@
"trailing-comma": [
true,
{
- "multiline": "always",
- "singleline": "never"
+ "multiline": {
+ "objects": "ignore",
+ "arrays": "always",
+ "functions": "ignore",
+ "typeLiterals": "ignore"
+ }
}
],
"arrow-return-shorthand": true,
@@ -119,7 +123,10 @@
"component-selector": [
true,
"element",
- ["ngx", "xds"],
+ [
+ "ngx",
+ "xds"
+ ],
"kebab-case"
],
"use-input-property-decorator": true,