Skip to content

Instantly share code, notes, and snippets.

@gregtatum
Created January 28, 2015 18:12
Show Gist options
  • Select an option

  • Save gregtatum/38e460b4e2a5b29c821d to your computer and use it in GitHub Desktop.

Select an option

Save gregtatum/38e460b4e2a5b29c821d to your computer and use it in GitHub Desktop.
Observations on jshint's warnings for semicolons
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