No ticket. Restore checking individual src/**/*.js files by jsHint.

This commit is contained in:
Michał Gołębiowski 2013-09-06 20:31:18 +02:00
parent 1f16b16859
commit 1a25f21dc3
23 changed files with 34 additions and 25 deletions

View File

@ -1,3 +1,5 @@
src/intro.js
src/outro.js
test/qunit/**
test/data/jquery-1.9.1.ajax_xhr.min.js
test/data/badcall.js

View File

@ -55,6 +55,12 @@ module.exports = function( grunt ) {
}
},
jshint: {
src: {
src: [ "src/**/*.js" ],
options: {
jshintrc: "src/.jshintrc"
}
},
dist: {
src: [ "dist/jquery.js" ],
options: srcHintOptions

View File

@ -1,3 +1,3 @@
define(function() {
return /\?/;
return (/\?/);
});

View File

@ -1,3 +1,3 @@
define(function() {
return /^(?:checkbox|radio)$/i;
return (/^(?:checkbox|radio)$/i);
});

View File

@ -60,7 +60,8 @@ jQuery.offset = {
curOffset = curElem.offset();
curCSSTop = jQuery.css( elem, "top" );
curCSSLeft = jQuery.css( elem, "left" );
calculatePosition = ( position === "absolute" || position === "fixed" ) && ( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
calculatePosition = ( position === "absolute" || position === "fixed" ) &&
( curCSSTop + curCSSLeft ).indexOf("auto") > -1;
// Need to be able to calculate position if either top or left is auto and position is either absolute or fixed
if ( calculatePosition ) {

View File

@ -1,3 +1,3 @@
define(function() {
return /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
});

View File

@ -1,3 +1,3 @@
define(function() {
return /\S+/g;
return (/\S+/g);
});