aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tslint.json
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-05-27 17:25:52 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-05-27 17:25:52 +0200
commitccf6ed16f1eeb05b77103bd44bc06ccbbbba9bdd (patch)
tree1765f48824be934e0be07e8a987a9513c58ba3da /client/tslint.json
parent41a2aee38cf812510010da09de9bae53590ec119 (diff)
downloadPeerTube-ccf6ed16f1eeb05b77103bd44bc06ccbbbba9bdd.tar.gz
PeerTube-ccf6ed16f1eeb05b77103bd44bc06ccbbbba9bdd.tar.zst
PeerTube-ccf6ed16f1eeb05b77103bd44bc06ccbbbba9bdd.zip
Do not prefix private attributes
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}