-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
30 lines (30 loc) · 838 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
30 lines (30 loc) · 838 Bytes
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
---
default_language_version:
python: python
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-merge-conflict
- id: debug-statements
stages: [pre-commit]
- id: end-of-file-fixer
exclude: '^pytest/testdata|^test/simple_source'
stages: [pre-commit]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
exclude: '^pytest/testdata|^test/simple_source'
stages: [pre-commit]
- repo: https://github.com/psf/black
rev: 25.11.0
hooks:
- id: black
language_version: python3
stages: [pre-commit]
additional_dependencies: ["click"]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.0 # Use the latest version
hooks:
- id: check-github-workflows