We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3729574 commit 128b678Copy full SHA for 128b678
.pre-commit-config.yaml
@@ -1,10 +1,17 @@
1
+# See https://pre-commit.com for more information
2
+# See https://pre-commit.com/hooks.html for more hooks
3
exclude: |
4
(?x)(
5
# Python/system files
6
^.*/__init__\.py$|
7
^.*?/\.venv/.*$|
8
^.*?/node_modules/.*$|
- ^.*?/\.ruff_cache/.*$|
9
+
10
+ # Generated/test files
11
+ ^.*?/\.pytest_cache/.*$|
12
+ ^.*?/__pycache__/.*$|
13
+ ^.*?/\.mypy_cache/.*$|
14
+ ^.*?/\.ruff_cache/.*$
15
16
# Package management
17
^.*?/poetry\.lock$|
@@ -14,10 +21,8 @@ exclude: |
21
# Build and test artifacts
22
^.*?/build/.*$|
23
^.*?/dist/.*$|
- ^.*?/\.pytest_cache/.*$|
18
24
^.*?/\.coverage$|
19
25
^.*?/coverage\.xml$|
20
- ^.*?/\.mypy_cache/.*$
26
)
27
28
repos:
0 commit comments