From ab31497b64a27dfacb56c97864d05df234ab3acc Mon Sep 17 00:00:00 2001 From: perryharlock Date: Tue, 5 Nov 2013 15:06:40 +0000 Subject: [PATCH] Add minified js file to exclusions for jshint --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 6327dfb..9f48cef 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -3,7 +3,7 @@ module.exports = function (grunt) { grunt.initConfig({ jshint: { - all: ['**/*.js', '!node_modules/**/*.js', '!public/js/vendor/**/*.js'], + all: ['**/*.js', '!node_modules/**/*.js', '!public/js/vendor/**/*.js', '!public/js/site.min.js'], options: { es3: false, indent: 4,