We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745cf85 commit 9469e94Copy full SHA for 9469e94
README.md
@@ -745,6 +745,7 @@
745
∙∙var name;
746
}
747
```
748
+
749
- Place 1 space before the leading brace.
750
751
```javascript
@@ -770,6 +771,17 @@
770
771
breed: 'Bernese Mountain Dog'
772
});
773
774
775
+ - Set off operators with spaces.
776
777
+ ```javascript
778
+ // bad
779
+ var x=y+5;
780
781
+ // good
782
+ var x = y + 5;
783
+ ```
784
785
- Place an empty newline at the end of the file.
786
787
0 commit comments