grunt-contrib-jshint
Advanced tools
Comparing version 0.4.1 to 0.4.2
{ | ||
"name": "grunt-contrib-jshint", | ||
"description": "Validate files with JSHint.", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-jshint", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -137,2 +137,3 @@ # grunt-contrib-jshint [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-jshint.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-jshint) | ||
* 2013-04-08 v0.4.2 Avoid wiping force option when jshintrc is used. | ||
* 2013-04-06 v0.4.1 Fix to allow object type for deprecated predef. | ||
@@ -151,2 +152,2 @@ * 2013-04-04 v0.4.0 Revert task level options to override jshintrc files. | ||
*This file was generated on Sat Apr 06 2013 22:25:05.* | ||
*This file was generated on Mon Apr 08 2013 14:53:42.* |
@@ -22,2 +22,6 @@ /* | ||
// Report JSHint errors but dont fail the task | ||
var force = options.force; | ||
delete options.force; | ||
// Read JSHint options from a specified jshintrc file. | ||
@@ -45,6 +49,2 @@ if (options.jshintrc) { | ||
// Report JSHint errors but dont fail the task | ||
var force = options.force; | ||
delete options.force; | ||
grunt.verbose.writeflags(options, 'JSHint options'); | ||
@@ -51,0 +51,0 @@ grunt.verbose.writeflags(globals, 'JSHint globals'); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19701
152