grunt-contrib-jshint icon indicating copy to clipboard operation
grunt-contrib-jshint copied to clipboard

Validate files with JSHint.

Results 22 grunt-contrib-jshint issues
Sort by recently updated
recently updated
newest added

https://jshint.com/blog/2021-05-30/release-2-13-0/ The new release brings optional chaining and other checks to the package. Please update the version. Thank you..

I use grunt with `grunt-contrib-jshint` on my bundle process for my asp.net core typescript files. I have this super simple typescript code: ``` function delay(delay: number) { return new Promise(r...

Hi, Is it possible to update jshint dependency to 2.11.0 ? I'm facing to this error actualy https://github.com/jshint/jshint/issues/3384 And it's seems to be fixed in next jshint version. Thank's by...

According [the documentation](https://github.com/gruntjs/grunt-contrib-jshint#specifying-jshint-options-and-globals) the specific options replaces the global ones, but, It's does not work, I have: Gruntfile.js (Not complete) ``` js jshint: { options: { jshintrc: true }, grunt:...

When I run build after npm install I am getting this error. But if I install grunt globally and run `grunt build` it passes the task. This is package.json {...

Hi. I think peerDependencies is deprecated but added again in the package.json. Remove peerDeps. Ref gruntjs/grunt#1116: https://github.com/gruntjs/grunt-contrib-jshint/commit/4557d0440d17383825cb84abede08b90b8b21614 Add grunt >=0.4.0 as a peerDep: https://github.com/gruntjs/grunt-contrib-jshint/commit/a368347ad26380fd2a59dd57bc1ab2e765493808 If it has `grunt >= 0.4.0`...

When multiple issues are identified in the same file, clicking on one of the issues to go to that line clears all the other messages for that file. Therefore, there...

It'd be nice to supply a list of reporters in the options in case I want multiple output or output formats. For example, I'd like to be able to send...

I am attempting to get the plugin to report success even when JSHint reports particular warnings. For example: I want to warn the developer when they have defined a variable...

Using version 0.11 I have no .jshintrc, only this in my Gruntfile.js ``` jshint: { options: { jshintrc: true, JSON: true }, files: ['index.js', 'Gruntfile.js', 'lib/*.js', 'test/*.js'] } ``` Error:...