Add informational inline comments in .jshintrc

Close h5bp/html5-boilerplate#1628
This commit is contained in:
Bo-Yi Wu
2014-11-02 19:45:44 +02:00
committed by Cătălin Mariș
parent d2740f3c6b
commit eba30f07ac

View File

@@ -1,5 +1,8 @@
{
// Enforcing options
// http://www.jshint.com/docs/options/#enforcing-options
"bitwise": true,
"eqeqeq": true,
"forin": true,
@@ -10,8 +13,18 @@
"undef": true,
"unused": true,
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Relaxing options
// http://www.jshint.com/docs/options/#relaxing-options
"esnext": true,
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Environments
// http://www.jshint.com/docs/options/#environments
"browser": true,
"jquery": true,
"node": true