Skip to content

Commit 128b678

Browse files
feat: expand pre-commit config (#259)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Aaron <AJ> Steers <[email protected]>
1 parent 3729574 commit 128b678

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.pre-commit-config.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
13
exclude: |
24
(?x)(
35
# Python/system files
46
^.*/__init__\.py$|
57
^.*?/\.venv/.*$|
68
^.*?/node_modules/.*$|
7-
^.*?/\.ruff_cache/.*$|
9+
10+
# Generated/test files
11+
^.*?/\.pytest_cache/.*$|
12+
^.*?/__pycache__/.*$|
13+
^.*?/\.mypy_cache/.*$|
14+
^.*?/\.ruff_cache/.*$
815
916
# Package management
1017
^.*?/poetry\.lock$|
@@ -14,10 +21,8 @@ exclude: |
1421
# Build and test artifacts
1522
^.*?/build/.*$|
1623
^.*?/dist/.*$|
17-
^.*?/\.pytest_cache/.*$|
1824
^.*?/\.coverage$|
1925
^.*?/coverage\.xml$|
20-
^.*?/\.mypy_cache/.*$
2126
)
2227
2328
repos:

0 commit comments

Comments
 (0)