Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # prepare commit config <code clojure> # See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks default_stages: [commit] repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-added-large-files - repo: local hooks: - id: jira-ticket-number-commit-msg name: Appending jira ticket number to commit message entry: bash -c 'bb --classpath hook --main prepare_commit_msg' stages: [commit-msg] language: system - id: clj-kondo name: Checking files with clj-kondo entry: hook/clj-kondo.sh stages: [push] language: script </code> open/prepare-commit-config.txt Last modified: 2024/10/05 06:15by 127.0.0.1