We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a04745f + f8d8807 commit 9adef84Copy full SHA for 9adef84
Makefile
@@ -28,3 +28,8 @@ endif
28
md-lint: ## Lint markdown files
29
$(ECHO_PREFIX) printf " %-12s ./...\n" "[MD LINT]"
30
$(CMD_PREFIX) podman run --rm -v $(CURDIR):/workdir --security-opt label=disable docker.io/davidanson/markdownlint-cli2:latest > /dev/null
31
+
32
+.PHONY: md-lint-fix
33
+md-lint-fix: ## Fixes all fixable linting errors
34
+ $(ECHO_PREFIX) printf " %-12s ./...\n" "[MD LINT]"
35
+ $(CMD_PREFIX) podman run --rm -v $(CURDIR):/workdir --security-opt label=disable docker.io/davidanson/markdownlint-cli2:latest --fix > /dev/null
0 commit comments