From 56448b4ea4becf534fa656fdf76ad89aa332c6d1 Mon Sep 17 00:00:00 2001 From: Ricardo Tomasi Date: Wed, 24 Jul 2013 00:25:08 -0300 Subject: [PATCH] Ignore shared/vendor in lint task --- Gruntfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0930f56504..05fbdff39b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -84,7 +84,10 @@ var path = require('path'), src: [ "core/shared/**/*.js" ] - } + }, + exclude: [ + "core/shared/vendor/**/*.js" + ] } },