Skip to content

Commit

Permalink
feat(EXPERIMENTAL): enable pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
niall-byrne committed Jul 30, 2024
1 parent ed79553 commit fb9e4a1
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion {{cookiecutter.project_slug}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: commitizen
stages: [commit-msg]
- repo: https://github.com/cicd-tools-org/pre-commit.git
rev: c58cb72acbf89070f7496957599e79ce17afe9f8
rev: d1beab76aee01c287e4b7fc98d220e68e7e64c67
hooks:
- id: format-shell
args:
Expand All @@ -30,6 +30,29 @@ repos:
{%- if cookiecutter.optional_toml_linting == 'true' %}
- id: format-toml
{%- endif %}
- id: gettext-translations-add
args:
- "-p"
- "python/locales"
- id: gettext-translations-compile
args:
- "-p"
- "python/locales"
- id: gettext-translations-missing
args:
- "-p"
- "python/locales"
- "-s"
- "en"
- id: gettext-translations-update
args:
- "-p"
- "python/locales"
- "-c"
- "python"
- "-e"
- "[email protected]"
- "-u"
- id: git-conflict-markers
{%- if cookiecutter.optional_workflow_linting == 'true' %}
- id: lint-github-workflow-header
Expand Down

0 comments on commit fb9e4a1

Please sign in to comment.