Continued from markdownlint#304
markdownlint --fix '**/*.md'
When running this command in a project without any md files, it gives me confusing error:
Usage: markdownlint [options] <files|directories|globs>
MarkdownLint Command Line Interface
Options:
-h, --help output usage information
-V, --version output the version number
-f, --fix fix basic errors (does not work with STDIN)
-s, --stdin read from STDIN (does not work with files)
-o, --output [outputFile] write issues to file (no console)
-c, --config [configFile] configuration file (JSON, JSONC, JS, or YAML)
-i, --ignore [file|directory|glob] file(s) to ignore/exclude
-p, --ignore-path [file] path to file with ignore pattern(s)
-r, --rules [file|directory|glob|package] custom rule files
It was my mistake to forget to add a readme file, but I think in this case the output should be something more specific, like No valid files found. Now it suggests I entered invalid command.
Continued from markdownlint#304
markdownlint --fix '**/*.md'When running this command in a project without any md files, it gives me confusing error:
It was my mistake to forget to add a readme file, but I think in this case the output should be something more specific, like
No valid files found. Now it suggests I entered invalid command.