diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-08-09 03:10:10 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-08-09 03:10:10 +0000 |
commit | 53f7c2edf478dac9e6b8e52c4b9a59c53659eb31 (patch) | |
tree | 095dd8a89f604956f5ff0ddf6e0b0cd0e0274a27 /lefthook.yml | |
parent | 6ec1ac0d653ff7436487e41019175d5413ee22c3 (diff) | |
download | gitlab-ce-53f7c2edf478dac9e6b8e52c4b9a59c53659eb31.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lefthook.yml')
-rw-r--r-- | lefthook.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lefthook.yml b/lefthook.yml index 81ff2ecdada..55027f6bf59 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -39,8 +39,13 @@ pre-push: 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 gettext: - skip: true # This is disabled by default. You can enable this check by adding skip: false in lefhook-local.yml https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md#skipping-commands + skip: true # This is disabled by default. You can enable this check by adding skip: false in lefhook-local.yml https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md#skipping-commands tags: backend frontend view haml files: git diff --name-only --diff-filter=d $(git merge-base origin/master HEAD)..HEAD | while read file;do git diff --unified=1 $(git merge-base origin/master HEAD)..HEAD $file | grep -Fqe '_(' && echo $file;done; true glob: "*.{haml,rb,js,vue}" run: bin/rake gettext:updated_check + docs-metadata: # See https://docs.gitlab.com/ee/development/documentation/#metadata + tags: documentation style + files: git diff --name-only --diff-filter=d $(git merge-base origin/master HEAD)..HEAD + glob: 'doc/*.md' + run: scripts/lint-docs-metadata.sh {files} |