From 63448148a217da7e64c04b21a04982f0d64aabaa Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Thu, 31 Mar 2016 09:16:31 -0400 Subject: Build: Remove maxLineLength execption in .jscsrc Also seperates tests into a seperate task because they still have many errors Closes gh-1690 --- Gruntfile.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js index fcd8609c6..f31cca5d4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -173,12 +173,21 @@ grunt.initConfig({ }, jscs: { - all: { + ui: { options: { config: true }, files: { - src: [ "demos/**/*.js", "build/**/*.js", "tests/**/*.js", "ui/**/*.js" ] + src: [ "demos/**/*.js", "build/**/*.js", "ui/**/*.js" ] + } + }, + tests: { + options: { + config: true, + maximumLineLength: null + }, + files: { + src: [ "tests/**/*.js" ] } } }, -- cgit v1.2.3