aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js45
1 files 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,