Skip to content

Commit 1936d60

Browse files
committed
fix: exclude python lib md files from lint-md
this commit excludes python lib md files from lint-md. Signed-off-by: Zaki Shaikh <[email protected]>
1 parent cc39105 commit 1936d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ HUGO_BIN := $(TMPDIR)/hugo/hugo
1919
PY_FILES := $(shell find . -type f -regex ".*\.py" -print)
2020
SH_FILES := $(shell find hack/ -type f -regex ".*\.sh" -print)
2121
YAML_FILES := $(shell find . -not -regex '^./vendor/.*' -type f -regex ".*y[a]ml" -print)
22-
MD_FILES := $(shell find . -type f -regex ".*md" -not -regex '^./vendor/.*' -not -regex '^./.vale/.*' -not -regex "^./docs/themes/.*" -not -regex "^./.git/.*" -print)
22+
MD_FILES := $(shell find . -type f -regex ".*md" -not -regex '^./vendor/.*' -not -regex '^./.vale/.*' -not -regex "^./docs/themes/.*" -not -regex "^./.git/.*" -not -regex "^.*/.venv/.*" -print)
2323

2424

2525
ifeq ($(PAC_VERSION),)

0 commit comments

Comments
 (0)