Commit c0ee6120 authored by Marcel Amirault's avatar Marcel Amirault

Update lefthook for docs

Should only lint markdown files in doc/, ignore
everything else.
parent 5ff9aa6f
...@@ -16,7 +16,7 @@ pre-push: ...@@ -16,7 +16,7 @@ pre-push:
markdownlint: markdownlint:
tags: documentation style tags: documentation style
files: git diff --name-only $(git merge-base origin/master HEAD)..HEAD files: git diff --name-only $(git merge-base origin/master HEAD)..HEAD
glob: "*.md" glob: "doc/*.md"
run: yarn markdownlint {files} run: yarn markdownlint {files}
scss-lint: scss-lint:
tags: stylesheet css style tags: stylesheet css style
...@@ -32,5 +32,5 @@ pre-push: ...@@ -32,5 +32,5 @@ pre-push:
vale: # Requires Vale: https://docs.gitlab.com/ee/development/documentation/#install-linters vale: # Requires Vale: https://docs.gitlab.com/ee/development/documentation/#install-linters
tags: documentation style tags: documentation style
files: git diff --name-only $(git merge-base origin/master HEAD)..HEAD files: git diff --name-only $(git merge-base origin/master HEAD)..HEAD
glob: "*.md" glob: "doc/*.md"
run: if command -v vale 2> /dev/null; then vale --config .vale.ini --minAlertLevel error {files}; else echo "Vale not found. Install Vale"; fi run: if command -v vale 2> /dev/null; then vale --config .vale.ini --minAlertLevel error {files}; else echo "Vale not found. Install Vale"; fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment