• Stars
    star
    418
  • Rank 103,620 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 11 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

JSHint plugin for gulp

Build Status

Information

Packagegulp-jshint
Description JSHint plugin for gulp
Node Version >= 0.4

Install

npm install jshint gulp-jshint --save-dev

NOTE: as of 2.0 jshint must be installed with gulp-jshint.

Usage

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'));
});

Options

Plugin options:

  • lookup

    • Default is true
    • When 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 JSHint's documentation 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));

Results

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

Reporters

JSHint reporters

Built-in

You can choose any JSHint reporter when you call

stuff
  .pipe(jshint())
  .pipe(jshint.reporter('default'))

External

Let's use jshint-stylish as an example

const stylish = require('jshint-stylish');

stuff
  .pipe(jshint())
  .pipe(jshint.reporter(stylish))

- OR -

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.

Fail Reporter

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

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);
});

Reporter Configuration

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 }));
});

Extract

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'));
});

LICENSE

MIT

More Repositories

1

elasticsearch-angular-example

This is a very simple project designed to help people get going with angular and elasticsearch.
HTML
101
star
2

grunt-run

Invite external commands into your grunt process with three tasks run, wait and stop.
JavaScript
26
star
3

crystal-mime

Mimetypes for Crystal, based on node-mime.
Crystal
22
star
4

kibana-plugin-boilerplate

Super Simple Kibana Plugin Boilerplate
JavaScript
15
star
5

rcloader

For build system plugins that need to fetch relative config files (like .jshintrc).
JavaScript
13
star
6

redux-async-actions

Simple wrapper around common async action handling
JavaScript
9
star
7

esjs-angular2-test

HTML
3
star
8

http-asset

Class for fetching and caching an asset over http
JavaScript
2
star
9

fcb

Convert callbacks to promises
JavaScript
2
star
10

rcfinder

Find a config file (like .foorc) by walking up from a specific directory
JavaScript
2
star
11

observable-rpc

JavaScript
2
star
12

webpack-node-test-runner

Tool to help running tests built with webpack in node
JavaScript
2
star
13

kibana-hacks

A collection of hacks for kibana
JavaScript
2
star
14

html5-static-boilerplate

Boilerplate for building a static site using es6 and webcomponents.
JavaScript
2
star
15

deku-scrub

deku extensions for increased awesome
JavaScript
1
star
16

enhance

Feature request tracker
JavaScript
1
star
17

fbox

Simple flex-box grid thingy
CSS
1
star
18

micro-plus

Some helpers for working with micro
TypeScript
1
star
19

advent-of-code

My advent of code solutions
TypeScript
1
star
20

holidayjs

Magnificent sweater creator
JavaScript
1
star
21

sample-sledgehammer-kibana-plugin

JavaScript
1
star
22

expect-to-enzyme

expect-to assertion helpers for use with enzyme
JavaScript
1
star
23

vis-walk-through-example

JavaScript
1
star
24

bower-registry-editor

Super simple express app to let people edit their own bower packages
CSS
1
star
25

bs-less

basic breakdown of bootstrap to just less
CSS
1
star
26

fromnode

extraction of Bluebird's fromNode method
JavaScript
1
star
27

kpocs

JavaScript
1
star
28

adt-door-monitor

check the ADT Pulse dashboard for the status of doors in your house
JavaScript
1
star
29

kibana-jenkins

Experimental Kibana plugin that pulls in data from the Jenkins API
TypeScript
1
star
30

gulp-jshint-file-reporter

Super simple reporter that writes gulp-jshint output to a file.
JavaScript
1
star