File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,35 +29,35 @@ lint.yamllint: $(tools/yamllint)
2929.PHONY : lint.markdown
3030lint : lint.markdown
3131lint-deps : $(tools/markdownlint )
32- lint.markdown :
32+ lint.markdown : $( tools/markdownlint )
3333 @$(LOG_TARGET )
3434 $(tools/markdownlint ) -c tools/linter/markdownlint/markdown_lint_config.json docs/site/content/**
3535
3636.PHONY : lint.markdown.fix
3737lint : lint.markdown.fix
3838lint-deps : $(tools/markdownlint )
39- lint.markdown.fix :
39+ lint.markdown.fix : $( tools/markdownlint )
4040 @$(LOG_TARGET )
4141 $(tools/markdownlint ) -c tools/linter/markdownlint/markdown_lint_config.json --fix docs/site/content/**
4242
4343.PHONY : lint.codespell
4444lint : lint.codespell
4545lint-deps : $(tools/codespell )
4646lint.codespell : CODESPELL_SKIP := $(shell cat tools/linter/codespell/.codespell.skip | tr \\n ',')
47- lint.codespell :
47+ lint.codespell : $( tools/codespell )
4848 @$(LOG_TARGET )
4949 $(tools/codespell ) --skip $(CODESPELL_SKIP ) --ignore-words tools/linter/codespell/.codespell.ignorewords --check-filenames
5050
5151.PHONY : lint.checklinks
5252lint : lint.checklinks
5353lint-deps : $(tools/linkinator )
54- lint.checklinks : # Check for broken links in the docs
54+ lint.checklinks : $( tools/linkinator ) # Check for broken links in the docs
5555 @$(LOG_TARGET )
5656 $(tools/linkinator ) docs/site/public/ -r --concurrency 25 --skip $(LINKINATOR_IGNORE )
5757
5858.PHONY : lint.checklicense
5959lint : lint.checklicense
6060lint-deps : $(tools/skywalking-eyes )
61- lint.checklicense : # Check for broken links in the docs
61+ lint.checklicense : $( tools/skywalking-eyes ) # Check for broken links in the docs
6262 @$(LOG_TARGET )
6363 $(tools/skywalking-eyes ) -c tools/linter/license/.licenserc.yaml header check
You can’t perform that action at this time.
0 commit comments