html5-boilerplate
Version:
[](https://travis-ci.org/h5bp/html5-boilerplate) [](https://david-dm.org/h5bp/html5-boilerplate#info=devDep
33 lines (23 loc) • 628 B
Plain Text
{
// Enforcing options
// http://jshint.com//docs/options/#enforcing-options
"bitwise": true,
"eqeqeq": true,
"forin": true,
"latedef": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"undef": true,
"unused": true,
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Relaxing options
// http://jshint.com//docs/options/#relaxing-options
"esnext": true,
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Environments
// http://jshint.com//docs/options/#environments
"browser": true,
"jquery": true,
"node": true
}