Skip to content

Instantly share code, notes, and snippets.

View cs01's full-sized avatar

Chad Smith cs01

View GitHub Profile
@cs01
cs01 / .jshintrc.js
Last active September 13, 2016 23:41 — forked from connor/.jshintrc.js
jshintrc example
// NOTE: this file should be stored at ~/.jshintrc
// to see explanation, and full list of options, see jshint/src/options.js
{
// Settings
"passfail" : false, // Stop on first error.
"maxerr" : 100, // Maximum error before stopping.
// Predefined globals that JSHint will ignore.
"browser" : true, // Standard browser globals e.g. `window`, `document`.