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 4c50ddc commit 05ad9c6Copy full SHA for 05ad9c6
README.md
@@ -422,6 +422,18 @@ Array.prototype.slice # No
422
423
Prefer `@property` over `this.property`.
424
425
+```coffeescript
426
+return @property # Yes
427
+return this.property # No
428
+```
429
+
430
+However, avoid the use of **standalone** `@`:
431
432
433
+return this # Yes
434
+return @ # No
435
436
437
Avoid `return` where not required, unless the explicit return increases clarity.
438
439
Use splats (`...`) when working with functions that accept variable numbers of arguments:
0 commit comments