Skip to content

Commit

Permalink
chore: add changelog to exclude list in pre-commit config (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer authored May 20, 2024
1 parent bafa655 commit 2aeb17f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ ci:
autoupdate_schedule: monthly
skip: [licensecheck] # does not run on pre-commit.ci, due to sqlite error, runs locally

# do not touch the cassette files: these are auto-generated by vcr.py
exclude: \/cassettes\/
# Exclude "cassette" files: auto-generated by vcr.py
# Exclude changelog: auto-generated by python-semantic-release
exclude: |
(?x)^(
/cassettes/|
CHANGELOG.md
)$
repos:
# Ref: https://pre-commit.com/#meta-hooks
Expand Down Expand Up @@ -86,8 +91,6 @@ repos:
hooks:
- id: typos
args: [--force-exclude]
# CHANGELOG.md: the commit hashes in changelog trigger the spell checker
exclude: CHANGELOG.md

- repo: https://github.com/FHPythonUtils/LicenseCheck/
rev: b2b50f4d40c95b15478279a7a00553a1dc2925ef # frozen: 2024.2
Expand Down

0 comments on commit 2aeb17f

Please sign in to comment.