Created
September 20, 2012 00:24
-
-
Save dcherman/3753206 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Lots of indentation variety on this file trying | |
// to get JSHint to throw an indentation error | |
module.exports = function( grunt ) { | |
grunt.initConfig({ | |
jshint: { | |
all: [ | |
"Gruntfile.js" | |
], | |
options: { | |
indent: 1 | |
} | |
} | |
}); | |
// The missing semicolon here is on purpose | |
// just so I can confirm that JSHint is working as expected | |
// for this test | |
grunt.registerTask( "default", "jshint" ) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment