|
1 | | -Usage: hallmark [command] [options] [pattern ...] |
| 1 | +Lint or fix files in the current working directory. |
2 | 2 |
|
3 | | - Lint or fix files in the current working directory. By default hallmark |
4 | | - includes files matching "*.md". Pass one or more glob patterns to override |
5 | | - this. Files matching .gitignore patterns are ignored. To ignore additional |
6 | | - files, use the --ignore option. |
| 3 | +Usage: |
| 4 | + hallmark [command] [options] |
7 | 5 |
|
8 | 6 | Commands: |
| 7 | + lint [file...] Lint markdown files (default) |
| 8 | + fix [file...] Fix markdown files |
| 9 | + cc add <target...> Add release(s) to CHANGELOG.md. |
9 | 10 |
|
10 | | - lint Lint markdown files (default) |
11 | | - fix Fix markdown files |
12 | | - cc add <target> Add new release to CHANGELOG.md. Target must be |
13 | | - a release type (major, minor, patch, premajor, |
14 | | - preminor, prepatch, prerelease) or a version. |
| 11 | +Arguments: |
| 12 | + file By default hallmark includes files matching "*.md". |
| 13 | + To override this provide one or more file arguments |
| 14 | + which can be file paths or glob patterns. |
| 15 | + target A release type (major, minor, patch, premajor, |
| 16 | + preminor, prepatch, prerelease) or a version. |
15 | 17 |
|
16 | 18 | Options: |
17 | | - |
18 | | - -i --ignore <pattern> Files to ignore. Repeat to specify multiple patterns |
19 | | - -h --help Print usage and exit |
20 | | - -v --version Print version and exit |
21 | | - --report <reporter> Specify reporter |
22 | | - --[no-]color Force color in report (detected by default) |
23 | | - --fix Backwards-compatible alias for fix command |
24 | | - --no-commits Don't populate release with commits |
| 19 | + -i --ignore <file> File or glob pattern to ignore (can be repeated) |
| 20 | + -h --help Print usage and exit |
| 21 | + -v --version Print version and exit |
| 22 | + --report <reporter> Specify reporter |
| 23 | + --[no-]color Force color in report (detected by default) |
| 24 | + --fix Backwards-compatible alias for fix command |
| 25 | + --no-commits Don't populate release with commits |
25 | 26 |
|
26 | 27 | Examples: |
27 | | - |
28 | 28 | # Lint *.md files |
29 | 29 | $ hallmark |
30 | 30 |
|
|
0 commit comments