We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c27eb commit d1f265dCopy full SHA for d1f265d
CODING_STANDARDS.md
@@ -172,6 +172,8 @@ API docs.
172
* Always use a `readonly` property instead of a getter (with no setter) when possible.
173
* Avoid long getters and setters. If the logic of an accessor would take more than three lines,
174
introduce a new method to contain the logic.
175
+* A getter should also immediately precede its corresponding setter.
176
+* Decorators such as `@Input` should be applied to the getter and not the setter.
177
178
#### JsDoc comments
179
0 commit comments