
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
gulp-jshint
Advanced tools
Package | gulp-jshint |
Description | JSHint plugin for gulp |
Node Version | >= 0.4 |
npm install jshint gulp-jshint --save-dev
NOTE: as of 2.0 jshint must be installed with gulp-jshint.
const jshint = require('gulp-jshint');
const gulp = require('gulp');
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
.pipe(jshint())
.pipe(jshint.reporter('YOUR_REPORTER_HERE'));
});
Plugin options:
lookup
true
false
do not lookup .jshintrc
files. See the JSHint docs for more info.linter
Default is "jshint"
Either the name of a module to use for linting the code or a linting function itself. This enables using an alternate (but jshint compatible) linter like "jsxhint"
.
Here's an example of passing in a module name:
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
.pipe(jshint({ linter: 'some-jshint-module' }))
.pipe(/*...*/);
});
Here's an example of passing in a linting function:
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
// This is available for modules like jshint-jsx, which
// expose the normal jshint function as JSHINT and the
// jsxhint function as JSXHINT
.pipe(jshint({ linter: require('jshint-jsx').JSXHINT }))
.pipe(/*...*/);
});
You can pass in any other options and it passes them straight to JSHint. Look at their README for more info. You can also pass in the location of your jshintrc file as a string and it will load options from it.
For example, to load your configuration from your package.json
exclusively and avoid lookup overhead you can do:
const pkg = require('./package');
const jshintConfig = pkg.jshintConfig;
jshintConfig.lookup = false;
gulp.src('yo').pipe(jshint(jshintConfig));
Adds the following properties to the file object:
file.jshint.success = true; // or false
file.jshint.errorCount = 0; // number of errors returned by JSHint
file.jshint.results = []; // JSHint errors, see [http://jshint.com/docs/reporters/](http://jshint.com/docs/reporters/)
file.jshint.data = []; // JSHint returns details about implied globals, cyclomatic complexity, etc
file.jshint.opt = {}; // The options you passed to JSHint
You can choose any JSHint reporter when you call
stuff
.pipe(jshint())
.pipe(jshint.reporter('default'))
Let's use jshint-stylish as an example
const stylish = require('jshint-stylish');
stuff
.pipe(jshint())
.pipe(jshint.reporter(stylish))
stuff
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
JSHint plugins have no good module format so I tried to support all of them I saw in the wild. Hopefully it worked, but if a JSHint plugin isn't working with this library feel free to open an issue.
Do you want the task to fail when a JSHint error happens? gulp-jshint includes a simple utility for this.
This example will log the errors using the stylish reporter, then fail if JSHint was not a success.
stuff
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('fail'))
Custom reporters don't interact with this module at all. jshint will add some attributes to the file object and you can add a custom reporter downstream.
const jshint = require('gulp-jshint');
const map = require('map-stream');
const myReporter = map(function (file, cb) {
if (file.jshint.success) {
return cb(null, file);
}
console.log('JSHINT fail in', file.path);
file.jshint.results.forEach(function (result) {
if (!result.error) {
return;
}
const err = result.error
console.log(` line ${err.line}, col ${err.character}, code ${err.code}, ${err.reason}`);
});
cb(null, file);
});
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
.pipe(jshint())
.pipe(myReporter);
});
Some reporters have options which you can pass to jshint.reporter()
. Here is an example of using verbose mode with the default JSHint reporter.
gulp.task('lint', function() {
return gulp.src('./lib/*.js')
.pipe(jshint())
.pipe(jshint.reporter('default', { verbose: true }));
});
Tells JSHint to extract JavaScript from HTML files before linting (see JSHint CLI flags). Keep in mind that it doesn't override the file's content after extraction. This is your tool of choice to lint web components!
gulp.task('lintHTML', function() {
return gulp.src('./src/*.html')
// if flag is not defined default value is 'auto'
.pipe(jshint.extract('auto|always|never'))
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
FAQs
JSHint plugin for gulp
The npm package gulp-jshint receives a total of 61,172 weekly downloads. As such, gulp-jshint popularity was classified as popular.
We found that gulp-jshint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.