From 8d4157f4e3fbfc03474c65fd151df06dd5c66412 Mon Sep 17 00:00:00 2001 From: Alexander Schmitz Date: Fri, 21 Aug 2015 00:15:43 -0400 Subject: [PATCH] Build: Style updates Fixes #14246 Closes gh-1588 --- Gruntfile.js | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 41961061b..7797b5c77 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -55,19 +55,6 @@ var }, component = grunt.option( "component" ) || "**", - jscsBad = [ - "ui/button.js", - "ui/datepicker.js", - "ui/draggable.js", - "ui/droppable.js", - "ui/effect.js", - "ui/mouse.js", - "ui/resizable.js", - "ui/selectable.js", - "ui/slider.js", - "ui/sortable.js" - ], - htmllintBad = [ "demos/tabs/ajax/content*.html", "demos/tooltip/ajax/content*.html", @@ -150,35 +137,13 @@ grunt.initConfig({ // Remove the requireSpacesInsideParentheses override once everything is fixed jscs: { - "ui-good": [ "ui/*.js" ].concat( jscsBad.map( function( file ) { - return "!" + file; - } ) ), - "ui-bad": { - options: { - requireSpacesInsideParentheses: null - }, - src: jscsBad - }, - tests: { - options: { - requireSpacesInsideParentheses: null - }, - src: "tests/unit/**/*.js" - }, - grunt: { - options: { - requireSpacesInsideParentheses: null - }, - src: [ "Gruntfile.js", "build/tasks/*.js" ] - }, - demos: { + all: { options: { - - // While the style guide removed onevar upgrading jscs to allow it causes too many - // errors right now - disallowMultipleVarDecl: null + requireCapitalizedComments: null }, - src: "demos/**/*.js" + files: { + src: [ "demos/**/*.js", "build/**/*.js", "tests/**/*.js", "ui/**/*.js" ] + } } }, uglify: minify, -- 2.39.5