Created
January 28, 2015 18:12
-
-
Save gregtatum/38e460b4e2a5b29c821d to your computer and use it in GitHub Desktop.
Observations on jshint's warnings for semicolons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function helloWorld1() { | |
| }; // jshint warning | |
| var helloWorld2 = function() { | |
| }; // no jshint warning | |
| function helloWorld3() { | |
| } // no jshint warning | |
| var helloWorld4 = function() { | |
| } // jshint warning |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment