gunlint
v1.0.1
Published
Format lint output
Downloads
4
Maintainers
Readme
formatted-linting
The formatted-linting
module is based on CLIEngine API and extends the ESLint tool in order to print additional information during the linting process.
This is a sample project from "How to format ESLint output" blogpost, therefore it won't be published at npm.
To run it locally use npm package linking mechanism:
cd ~/projects/formatted-linting # go into the package directory
npm link # creates global link
cd ~/projects/linter-consumer # go into some other package directory.
npm link /Users/alena/www/formatted-linting # link-install the package
Usage
The following command lints all files that have .js
or .json
extension:
formatted-linting --dir ./ --ext .json --ext .js
API
The formatted-linting
module provides the following API:
formatted-linting --dir <value> --ext <value> --conf <value>
Where:
--dir
is a directory to traverse for files,--ext
specifies an extension that should be checked by the linter,--conf
is a path to a client.eslintrc.js
file.
You can specify as much --dir
or --ext
options as you like, but it should be only one --conf
options.
If the path to a config file was not specified and there is no .eslintrc.js
file in the root directory of the client app, the default config file will be used.
The default configuration is:
module.exports = {
extends: 'eslint-config-standard',
env: { node: true },
rules: {
"semi": "off",
"space-before-function-paren": "off"
},
plugins: ['json']
};
The formatted-linting
by default extends a configuration called eslint-config-standard
. It also setts a node
environment and switches off semi
and space-before-function-paren
rules, that is enabled by default in eslint-config-standard
. The eslint-plugin-json
allows to lint JSON files.