Skip to content

Commit

Permalink
More attempt exclude fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Dec 7, 2023
1 parent 01f41cf commit 76447c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@ repos:
rev: v1.6.1
hooks:
- id: mypy
exclude: versioneer.py
exclude: ".*versioneer.*"
# This is for checking tests/* (everything else has a stricter check
# below), but since there's no include it's run on everything

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
hooks:
- id: mypy
exclude: ".*versioneer.*"
args: [
--disallow-untyped-defs,
--ignore-missing-imports,
"--disallow-untyped-defs",
"--ignore-missing-imports"
]
exclude: (versioneer.py|tests/)

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
Expand Down

0 comments on commit 76447c8

Please sign in to comment.