mirror of
https://github.com/regclient/regclient.git
synced 2025-04-18 22:44:00 +03:00
Fix checking of markdown lint
The unquoted `**/*.md` may get expanded by the shell. Signed-off-by: Brandon Mitchell <git@bmitch.net>
This commit is contained in:
parent
f441235a93
commit
2fd02fb376
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -30,3 +30,5 @@ See [DCO missing](https://github.com/src-d/guide/blob/master/developer-community
|
||||
- [ ] Documentation has been added, updated, or not applicable
|
||||
- [ ] Changes have been rebased to main
|
||||
- [ ] Multiple commits to the same code have been squashed
|
||||
|
||||
<!-- markdownlint-disable-file MD041 -->
|
||||
|
2
Makefile
2
Makefile
@ -67,7 +67,7 @@ lint-go: $(GOPATH)/bin/staticcheck .FORCE ## Run linting for Go
|
||||
.PHONY: lint-md
|
||||
lint-md: .FORCE ## Run linting for markdown
|
||||
docker run --rm -v "$(PWD):/workdir:ro" davidanson/markdownlint-cli2:$(MARKDOWN_LINT_VER) \
|
||||
**/*.md "#vendor"
|
||||
"**/*.md" "#vendor"
|
||||
|
||||
.PHONY: vulnerability-scan
|
||||
vulnerability-scan: osv-scanner vulncheck-go ## Run all vulnerability scanners
|
||||
|
Loading…
x
Reference in New Issue
Block a user