mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Build: Update grunt-jscs to latest, use exceptions to improve coverage
Closes gh-1506
This commit is contained in:
parent
fac517ebb9
commit
62620a3fdb
32
Gruntfile.js
32
Gruntfile.js
@ -76,7 +76,9 @@ var
|
||||
"dist/jquery-ui.min.js"
|
||||
]
|
||||
},
|
||||
component = grunt.option( "component" ) || "**";
|
||||
component = grunt.option( "component" ) || "**",
|
||||
|
||||
jscsBad = [ "ui/tabs.js", "ui/slider.js", "ui/selectable.js", "ui/resizable.js", "ui/mouse.js", "ui/menu.js", "ui/effect*.js", "ui/droppable.js", "ui/draggable.js", "ui/button.js", "ui/datepicker.js", "ui/sortable.js" ];
|
||||
|
||||
function mapMinFile( file ) {
|
||||
return "dist/" + file.replace( /ui\//, "minified/" );
|
||||
@ -158,12 +160,30 @@ grunt.initConfig({
|
||||
dest: "dist/jquery-ui.css"
|
||||
}
|
||||
},
|
||||
|
||||
// Remove the requireSpacesInsideParentheses override once everything is fixed
|
||||
jscs: {
|
||||
// datepicker and sortable are getting rewritten, ignore until that's done
|
||||
ui: [ "ui/*.js", "!ui/datepicker.js", "!ui/sortable.js" ],
|
||||
// TODO enable this once we have a tool that can auto format files
|
||||
// tests: "tests/unit/**/*.js",
|
||||
grunt: [ "Gruntfile.js", "build/tasks/*.js" ]
|
||||
"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" ]
|
||||
}
|
||||
},
|
||||
uglify: minify,
|
||||
htmllint: {
|
||||
|
@ -68,7 +68,7 @@
|
||||
"grunt-esformatter": "0.2.0",
|
||||
"grunt-git-authors": "2.0.0",
|
||||
"grunt-html": "1.0.0",
|
||||
"grunt-jscs": "0.6.2",
|
||||
"grunt-jscs": "1.5.0",
|
||||
"load-grunt-tasks": "0.3.0",
|
||||
"rimraf": "2.1.4",
|
||||
"testswarm": "1.1.0"
|
||||
|
Loading…
Reference in New Issue
Block a user