We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731ae10 commit 1abde47Copy full SHA for 1abde47
1 file changed
README.md
@@ -794,6 +794,24 @@
794
795
```
796
797
+ - Remove all trailing whitespace
798
+
799
+ ```javascript
800
+ // bad
801
+ function() {∙∙
802
+ var name;
803
+ ∙∙
804
+ // ... stuff ...
805
+ }
806
807
+ // good
808
+ function() {
809
810
811
812
813
+ ```
814
815
- Use indentation when making long method chains.
816
817
```javascript
0 commit comments