Détail du package

xlint

medikoo122MIT0.2.2

Powerful CLI for any lint (JSLint/JSHint +) solution.

cli, code, debugger, jslint

readme

xlint

Powerful CLI for any lint solution

Usage

$ xlint [options] [<paths>]

for example:

$ xlint --linter=path/to/jslint-module.js project/path

Interested in live console?

$ xlint --watch --linter=path/to/jslint-module.js project/path

Installation

$ npm install -g xlint

Options

  • linter path - Path to linter module. It must be CJS module, see e.g. xlint-jslint for JSLint provided as one
  • cache bool - Whether to cache generated reports. Very useful if we rerun the script on large projects. Cached reports are saved into .lintcache file in your project main directory [default: true]
  • color bool - Colorize console output [default: true]
  • depth number - How deeply to recurse into subdirectories [default: Infinity]
  • ignoreRules string - Whether to obey rules found in ignore files (Currently just git for .giitignore rules is supported). It's backed by fs2.isIgnored [default: git]
  • stream bool - Whether to generate reports on the go (as soon as first filenames are obtained) [default: true]
  • watch bool - Output reports in live console which updates after code or configuration files are updated [default: false]

Ignoring specific files and directories

Apart of support for .gitignore rules, XLint also looks for rules in .lintignore files. Syntax rules for those files is same as for .gitignore files.

Configuration files

XLint supports external .lint configuration files, through which we may setup options that are passed to linter. There can be many.lint files placed in any directory within project

File format is similar to conf files as we know them from *nix systems:

# This is a comment, any of this are ignored by the parser

@root                     # Root of a project, means that any rules found in upper directories won't have effect

plusplus                  # Regular boolean option
indent 2                  # Numeric option
predef console, window    # Array of strings

./foo.js                  # Options that would only address foo.js file
!plusplus                 # Overridden boolean option (set to false)
predef+ XMLHttpRequest    # Add token to array option
predef- console           # Remove token from array option

./some-dir                # Options that address only files within given directory
predef foo, bar           # Override array option
otherarr one,             # Other array option, if we set just one token, we need to post-fix it with comma

JSHint case

XLint doesn't support options defined in jshintrc files.
JSHint separates global variable settings from other options, but in XLint configuration files, global should be defined same as other options (as e.g. predef for JSLint), it will be passed to JSHint as expected.

Tests Build Status

$ npm test

changelog

v0.2.2 -- 2015.01.20

  • Fix resolution of multi paths settings from .lint configuration files
  • Fix spelling of LICENSE
  • Configure lint scripts

v0.2.1 -- 2014.07.22

  • Support non .js file extensions (in case of directory input provide fileExt option)
  • Improve options resolution:
    • Do not filter out negated options
    • Support hyphens in option names

v0.2.0 -- 2014.04.28

  • Move main modules from lib folder
  • Support for multiple linters in one batch
  • 'terse' console output mode
  • 'gjs' option to ouput log in Google Closure Linter format
  • 'realFileName' option
  • Provide linters via --linter option
  • In configuration file support multiple paths setting for one options block
  • Fix multiple path configuration resolution issue
  • Fix parse of JSHint globals
  • In console output display options sorted alphabetically
  • Fix configuration of EMFILE error pervention
  • Fix various important issues
  • Update to use latest versions of dependencies
  • Remove Makefile (it's environment agnostic package)
  • Improve documentation

v0.1.0 -- 2012.10.05

  • Initial