aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'client/tslint.json')
-rw-r--r--client/tslint.json19
1 files changed, 18 insertions, 1 deletions
diff --git a/client/tslint.json b/client/tslint.json
index 8e4e3fca1..9653c965b 100644
--- a/client/tslint.json
+++ b/client/tslint.json
@@ -51,6 +51,23 @@
51 "use-pipe-transform-interface": true, 51 "use-pipe-transform-interface": true,
52 "pipe-naming": [true, "camelCase", "my"], 52 "pipe-naming": [true, "camelCase", "my"],
53 "component-class-suffix": true, 53 "component-class-suffix": true,
54 "directive-class-suffix": true 54 "directive-class-suffix": true,
55
56 "typedef-whitespace": [ true,
57 {
58 "call-signature": "nospace",
59 "index-signature": "nospace",
60 "parameter": "nospace",
61 "property-declaration": "nospace",
62 "variable-declaration": "nospace"
63 }
64 ],
65 "whitespace": [ true,
66 "check-branch",
67 "check-decl",
68 "check-operator",
69 "check-separator",
70 "check-type"
71 ]
55 } 72 }
56} 73}