summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 4f5091b..6125e8a 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -44,6 +44,7 @@ module.exports = function(grunt) {
unused: true,
boss: true,
eqnull: true,
+ "-W044" : true, // cant get inline comment to work with grunt
globals: {
jQuery: true
}
@@ -113,7 +114,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task.
- grunt.registerTask('default', ['clean', 'jshint', 'concat', 'uglify', 'sass']);
+ grunt.registerTask('default', ['clean', 'jshint:main', 'concat', 'uglify', 'sass']);
grunt.registerTask('demo', ['default', 'copy']);