forked from pyta-uoft/pyta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
33 lines (32 loc) · 1.01 KB
/
.pre-commit-config.yaml
File metadata and controls
33 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.1.0
hooks:
- id: black
args: [--safe, --quiet]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
exclude: |
(?x)^(
examples|
tests/fixtures/|
tests/test_debug/snapshot_testing_snapshots|
tests/test_debug/snapshot_tracer_testing_snapshots|
tests/test_reporters/snapshots/test_html_server/test_no_watch_server_is_non_persistent/no_watch_html_server_snapshot.html|
tests/test_reporters/snapshots/test_html_server/test_watch_persistence/watch_html_server_snapshot.html|
tests/test_reporters/snapshots/test_html_server/test_watch_update/
)
ci:
autoupdate_schedule: quarterly