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.
2 parents b138d89 + 8189d6c commit f234e02Copy full SHA for f234e02
README.md
@@ -777,7 +777,7 @@
777
var x = y + 5;
778
```
779
780
- - Place an empty newline at the end of the file.
+ - End files with a single newline character.
781
782
```javascript
783
// bad
@@ -787,11 +787,18 @@
787
788
789
790
- // good
+ // bad
791
(function(global) {
792
// ...stuff...
793
- })(this);
+ })(this);↵
794
+ ↵
795
+ ```
796
797
+ ```javascript
798
+ // good
799
+ (function(global) {
800
+ // ...stuff...
801
802
803
804
- Use indentation when making long method chains.
0 commit comments