Fix release schedule headers
[docs.git] / .pre-commit-config.yaml
1 ---
2 repos:
3   - repo: https://github.com/pre-commit/pre-commit-hooks
4     rev: v4.4.0
5     hooks:
6       - id: trailing-whitespace
7
8   - repo: https://github.com/jorisroovers/gitlint
9     rev: v0.19.1
10     hooks:
11       - id: gitlint
12         stages: [commit-msg]
13       - id: gitlint-ci
14         stages: [manual]
15
16   - repo: https://github.com/Lucas-C/pre-commit-hooks
17     rev: v1.5.1
18     hooks:
19       - id: remove-tabs
20         stages: [commit]
21         exclude: >
22             (?x)^(
23                 .git/COMMIT_EDITMSG|
24                 docs/make.bat|
25                 docs/Makefile|
26                 projects_list.tsv
27             )$