diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2014-05-23 12:45:19 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2014-05-27 15:17:51 -0400 |
commit | 43756f6e7afb3ee8fe8100ef530e04f5b0cc4cae (patch) | |
tree | 342494a519bb06c3d73ac1467ea733ef1824e5ac /Gruntfile.js | |
parent | fdff2a9ac3584d2986487a596646c946083e319d (diff) | |
download | jquery-43756f6e7afb3ee8fe8100ef530e04f5b0cc4cae.tar.gz jquery-43756f6e7afb3ee8fe8100ef530e04f5b0cc4cae.zip |
Build: run jshint and jscs on release scripts
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 66d2f894e..73692cbbb 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -81,8 +81,7 @@ module.exports = function( grunt ) { jshint: { all: { src: [ - "src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/tasks/*", - "build/{bower-install,release-notes,release}.js" + "src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js" ], options: { jshintrc: true @@ -99,6 +98,7 @@ module.exports = function( grunt ) { // Right know, check only test helpers test: [ "test/data/testrunner.js", "test/data/testinit.js" ], + release: "build/*.js", tasks: "build/tasks/*.js" }, testswarm: { |