Created
October 6, 2014 16:57
-
-
Save humphd/1a74639ceb8fd6e5ea0f to your computer and use it in GitHub Desktop.
Testing new feature for grunt
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
| module.exports = function( grunt ) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON( "package.json" ), | |
| jshint: { | |
| options: { | |
| "-W069": true // ignore "['...'] is better written in dot notation." warnings | |
| }, | |
| files: [ | |
| "Gruntfile.js", | |
| "install-webmaker.js", | |
| "update-webmaker.js", | |
| "lib/**/*.js" | |
| ] | |
| } | |
| }); | |
| grunt.loadNpmTasks( "grunt-contrib-jshint" ); | |
| grunt.registerTask( "default", [ "jshint" ]); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment