A multi process javascript lib and cli linter using JSLint
[sudo] npm install [-g] jsrevival
jsrevival: a JSLint cli.
Usage: jsrevival [options] <file directory ...>
Options:
-h, --help output usage information
-V, --version output the version number
-j, --jslint_file <file> overload default
-o, --jslint_options <options> overload default. Ex: -o "unparam: false, vars: false"
-m, --display_default_options display jslint default options
-p, --predefined_names <names> which will be used to declare global variables. Ex: -p "foo, bar"
-c, --jslint_config_file <file> jslint config file (JSON expected)
-q, --quiet disable writing to std*. Ex: to use jsrevival in shell script
-R, --recursive run recursively on directories
-r, --reporter <name> cli (default), cli-hide-valid, cli-no-color, cli-hide-valid-no-color, sublime-text
-s, --stop_on_first_error stop on first file error
-e, --reporter_from_env read reporter config from JSREVIVAL_REPORTER user variable environment (stronger than -r option)
-v, --verbose enable verbose mode
var
jsrevival = require('../lib/jsrevival'),
linter = jsrevival.create();
linter.on('ready', function() {
linter.lint(__dirname + '/../test/Rtest/test.js');
});
linter.on('lint', function (errors, filename) {
console.log("filename: %s, error count: %d", filename, errors.length);
});
- examples/basic.js
- bin/jsrevival.js
- cli (default)
- cli-hide-valid
- cli-no-color
- cli-hide-valid-no-color
/**
* @class
* @public
* @params [{object}] config
* @params [{string}] config.JSLintFilename
* @params [{object}] config.JSLintOption
* @params [{boolean}]config.recursive. Default to false. Only valid for directories.
* @params [{boolean}] config.stopOnFirstError. Default to false.
* @event ready({string} JSLINT edition) // class has load jslint.js > lint method can be called there
* @event lint({array} errors, {string} filepath) // lint what ever you want
* @event end // there is no more things to lint
* @event error({Error} err)
*/
/**
* method
* @param {string} toLint: a file, a directory
*/
node-jsrevival is licensed under the MIT license.
Copyright (c) 2002 Douglas Crockford (www.JSLint.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.