0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-10-16 12:07:01 +02:00
markdownlint-cli2-action/README.md

125 lines
3.2 KiB
Markdown
Raw Normal View History

2021-01-13 06:28:47 +01:00
# markdownlint-cli2-action
2021-01-13 07:10:33 +01:00
> A GitHub Action to run the [`markdownlint-cli2`][markdownlint-cli2] tool for
linting [Markdown][markdown]/[CommonMark][commonmark] files with
2021-01-14 00:30:04 +01:00
[`markdownlint`][markdownlint]
2021-01-13 07:10:33 +01:00
`markdownlint-cli2` has extensive support for configuring options and disabling
or customizing `markdownlint` rules. See the
[`markdownlint-cli2` README][markdownlint-cli2] for more information.
`markdownlint` includes a wide variety of rules for analyzing and improving
Markdown content. See the [`markdownlint` README][markdownlint] for more
information.
2021-01-13 07:10:33 +01:00
## Inputs
### config (optional)
Path of a file to use for the base configuration object (defaults to none)
Equivalent to using the `--config` [command-line option][command-line] and
passing the specified configuration file.
### fix (optional)
Whether to fix supported issues automatically (any truthy value enables)
Equivalent to specifying the `--fix` [command-line option][command-line].
### globs (optional)
2021-01-13 07:10:33 +01:00
Glob expression(s) of files to lint (newline-delimited by default)
The default `*.{md,markdown}` lints all Markdown files in the base directory of
a project.
For more detail: [glob syntax in `markdownlint-cli2`][glob-syntax].
### separator (optional)
String to use as a separator for the `globs` input (defaults to newline)
Allows the `globs` input to use something other than `\n` to separate glob
expressions.
## Outputs
[None]
2021-01-13 07:10:33 +01:00
2021-01-14 00:30:04 +01:00
## Examples
2021-01-13 07:10:33 +01:00
2021-01-16 05:25:42 +01:00
To lint Markdown files in the base directory of a project:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
2021-01-16 05:25:42 +01:00
```
2021-01-14 00:30:04 +01:00
To lint all Markdown files in a project:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
2021-01-14 00:30:04 +01:00
with:
globs: '**/*.md'
2021-01-14 00:30:04 +01:00
```
To lint specific Markdown files in a project:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
2021-01-14 00:30:04 +01:00
with:
globs: |
README.md
CHANGELOG.md
docs/*.md
```
To use a custom separator:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
with:
globs: 'README.md,CHANGELOG.md,docs/*.md'
separator: ','
```
To fix supported issues when linting:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
with:
fix: true
globs: '**/*.md'
```
To specify a custom configuration file:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
with:
config: 'config/custom.markdownlint.jsonc'
globs: '**/*.md'
```
To prevent linting issues from failing the workflow run:
```yaml
2024-09-11 04:59:48 +02:00
- uses: DavidAnson/markdownlint-cli2-action@v17
continue-on-error: true
```
See [`example.yml`][example-yml] for a simple GitHub workflow that uses
`markdownlint-cli2-action`.
See [`changed.yml`][changed-yml] for a GitHub workflow that lints only the
Markdown files that changed in the most recent commit (useful for Pull Requests
and/or gradually introducing linting rules to a new repository).
[changed-yml]: .github/workflows/changed.yml
[command-line]: https://github.com/DavidAnson/markdownlint-cli2#command-line
2021-01-14 00:30:04 +01:00
[commonmark]: https://commonmark.org/
[example-yml]: .github/workflows/example.yml
[glob-syntax]: https://github.com/DavidAnson/markdownlint-cli2#use
2021-01-14 00:30:04 +01:00
[markdown]: https://wikipedia.org/wiki/Markdown
[markdownlint]: https://github.com/DavidAnson/markdownlint
[markdownlint-cli2]: https://github.com/DavidAnson/markdownlint-cli2