From 8a901c9d9ba707a1e42db3dc999b351b177f5d92 Mon Sep 17 00:00:00 2001 From: Nikolaus Krismer <niko@krismer.de> Date: Mon, 31 Mar 2014 15:06:23 +0200 Subject: [PATCH] exclude js libraries from linting --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ccaa6c16..b4b42fe4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -5,7 +5,7 @@ module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { - files: ['Gruntfile.js', 'src/main/webapp/js/**/*.js'], + files: ['Gruntfile.js', 'src/main/webapp/js/**/*.js', '!src/main/webapp/js/lib/**/*.js'], options: { browser: true, expr: true, -- GitLab