From 5ae13dc15ecd33af35bd616794099bce29659884 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 30 Dec 2017 23:48:21 -0800 Subject: [PATCH] Update Usage/README for previous commit. --- README.md | 4 +++- markdownlint.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b3db3ce..583773e6 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ npm install -g markdownlint-cli ```bash $ markdownlint --help - Usage: markdownlint [options] + Usage: markdownlint [options] MarkdownLint Command Line Interface @@ -49,6 +49,7 @@ CLI argument `--config` is not mandatory. If it is not provided, `markdownlint-c ## Related - [markdownlint][markdownlint] - API for this module +- [glob][glob] - Pattern matching implementation ## License @@ -66,3 +67,4 @@ MIT © Igor Shubovych [style-folder]: https://github.com/DavidAnson/markdownlint/tree/master/style [test-config]: https://github.com/igorshubovych/markdownlint-cli/blob/master/test/test-config.json [rc-standards]: https://www.npmjs.com/package/rc#standards +[glob]: https://github.com/isaacs/node-glob diff --git a/markdownlint.js b/markdownlint.js index cfb63890..0619ed39 100755 --- a/markdownlint.js +++ b/markdownlint.js @@ -91,7 +91,7 @@ function hasResultErrors(lintResult) { program .version(pkg.version) .description(pkg.description) - .usage('[options] ') + .usage('[options] ') .option('-c, --config [configFile]', 'Configuration file'); program.parse(process.argv);