Coder Social home page Coder Social logo

jshint-tsv-reporter's Introduction

jshint-tsv-repoter

TSV (Tab Separated Values) format reporter for JSHint.

This suits to quality evaluation in Excel.

Install

npm install --save-dev jshint-tsv-reporter

Usage

JSHint CLI

jshint --reporter node_modules/jshint-tsv-reporter/reporter.js file.js
grunt.initConfig({
  jshint: {
    options: {
      jshintrc : '.jshintrc',
      reporter: require('jshint-tsv-reporter'),
      reporterOutput: 'jshint-report.txt'
    },
    target: ['file.js']
  }
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
gulp.task('jshint', function() {
  return gulp.src([ 'file.js' ])
    .pipe(jshint('.jshintrc'))
    .pipe(jshint.reporter('jshint-tsv-reporter')
  );
});

Options (not available in CLI)

newline

Type: String
Default: depend on operating system

NewLine character. For example: '\n', '\r', '\r\n'

locale

Type: String
Default: 'en'

Locale of TSV header line. Support the following locale.

  • en (English) (default)
  • ja (Japanese)

header

Type: Object
Default: undefined

Set any header names. This option is prior to locale option.

For example:

header: {
  file : 'File',
  code : 'Code',
  line : 'Line',
  character : 'Character',
  reason : 'Reason',
  evidence : 'Evidence'
}

truncateEvidence

Type: Number
Default: undefined

If set to positive number, evidence is truncated to the number of characters.
If set undefined or null, whole evidence is output.
If set to 0 or negative number, evidence is not output.

Example output

File	Code	Line	Character	Reason
reporter.js	W097	1	1	Use the function form of "use strict".
reporter.js	W117	3	1	'module' is not defined.
reporter.js	W117	7	5	'process' is not defined.
reporter.js	W117	12	7	'process' is not defined.

jshint-tsv-reporter's People

Contributors

ymstmsys avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.