diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2014-05-23 12:45:19 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2014-05-23 13:01:03 -0400 |
commit | b80700c75f2d4920ebdd81b6122fa0c4f65723b1 (patch) | |
tree | 96b14741f0d87e1b9d7b8d6eadc1d5d21ff004cd /Gruntfile.js | |
parent | 97cbab51e20d39c0f13ea5ee890bb7f2a9817b41 (diff) | |
download | jquery-b80700c75f2d4920ebdd81b6122fa0c4f65723b1.tar.gz jquery-b80700c75f2d4920ebdd81b6122fa0c4f65723b1.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 d1ad5d475..1527206f1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -82,8 +82,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 @@ -100,6 +99,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: { |