summaryrefslogtreecommitdiffstats
path: root/.pre-commit-hooks.yaml
blob: 24fd745b8d8e5b0a23af02e0b426657855bd1d70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- id: gitlint
  name: gitlint
  description: Checks your git commit messages for style.
  language: python
  additional_dependencies: ["./gitlint-core[trusted-deps]"]
  entry: gitlint
  args: [--staged, --msg-filename]
  stages: [commit-msg]
- id: gitlint-ci
  name: gitlint
  language: python
  additional_dependencies: ["./gitlint-core[trusted-deps]"]
  entry: gitlint
  always_run: true
  pass_filenames: false
  stages: [manual]