aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2016-03-31 09:16:31 -0400
committerScott González <scott.gonzalez@gmail.com>2016-04-13 11:32:22 -0400
commit63448148a217da7e64c04b21a04982f0d64aabaa (patch)
tree7bfcbda3eee154ee06731e56622333cc0640da99 /Gruntfile.js
parentae1be9ed8de447ecf73b0e00b968f00babba8e60 (diff)
downloadjquery-ui-63448148a217da7e64c04b21a04982f0d64aabaa.tar.gz
jquery-ui-63448148a217da7e64c04b21a04982f0d64aabaa.zip
Build: Remove maxLineLength execption in .jscsrc
Also seperates tests into a seperate task because they still have many errors Closes gh-1690
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js13
1 files changed, 11 insertions, 2 deletions
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" ]
}
}
},