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 8ed5557 commit 27a17c6Copy full SHA for 27a17c6
.pre-commit-config.yaml
@@ -8,6 +8,18 @@ repos:
8
- id: check-toml
9
- id: end-of-file-fixer
10
- id: trailing-whitespace
11
+ - id: check-added-large-files
12
+ args:
13
+ - --maxkb=1024 # 1MB
14
+ - --enforce-all # Allow to run in the whole source code, instead of only the changed files.
15
+ # TODO(Marcelo): We should replace the kiwi.png file with a smaller one.
16
+ exclude: |
17
+ (?x)^(
18
+ tests/models/cassettes/.*|
19
+ tests/cassettes/.*|
20
+ uv.lock|
21
+ tests/assets/kiwi.png
22
+ )$
23
24
- repo: https://github.com/sirosen/texthooks
25
rev: 0.6.8
0 commit comments