fixed all jshint errors except for Path, Mask, and Blur

This commit is contained in:
Eric Rowell
2013-06-01 22:17:18 -07:00
parent 77793aed60
commit 98dff50c93
7 changed files with 41 additions and 23 deletions

View File

@@ -160,5 +160,5 @@ module.exports = function(grunt) {
grunt.registerTask('dev', ['clean', 'concat:source', 'replace:dev']);
grunt.registerTask('full', ['clean', 'concat:source', 'replace:dev', 'uglify', 'replace:prod']);
grunt.registerTask('test', ['concat:test']);
grunt.registerTask('hint', ['jshint']);
grunt.registerTask('hint', ['clean', 'concat:source', 'replace:dev', 'jshint']);
};