Skip to content

Instantly share code, notes, and snippets.

@ProfAvery
Last active March 7, 2016 08:51
Show Gist options
  • Save ProfAvery/c5db1692c457c526601c to your computer and use it in GitHub Desktop.
Save ProfAvery/c5db1692c457c526601c to your computer and use it in GitHub Desktop.
CPSC 473 JSHint configuration
// Client-side code
/* jshint browser: true, jquery: true, curly: true, eqeqeq: true, forin: true, immed: true, indent: 4, latedef: true, newcap: true, nonew: true, quotmark: double, undef: true, unused: true, strict: true, trailing: true */
// Server-side code
/* jshint node: true, curly: true, eqeqeq: true, forin: true, immed: true, indent: 4, latedef: true, newcap: true, nonew: true, quotmark: double, undef: true, unused: true, strict: true, trailing: true */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment