-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
29 lines (25 loc) · 774 Bytes
/
.pre-commit-config.yaml
File metadata and controls
29 lines (25 loc) · 774 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
exclude: '^docs/|\.tox|\.git|venv|^dist'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- repo: https://github.com/Zac-HD/shed
rev: 2025.6.1
hooks:
- id: shed
additional_dependencies: [ 'black~=26.3.1' ]
types_or: [ python, pyi, markdown, rst ]
- repo: https://github.com/PyCQA/flake8
rev: 7.3.0
hooks:
- id: flake8
args: [ --max-line-length, '120' , --ignore, 'E,W']
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.2
hooks:
- id: mypy
args: [ --ignore-missing-imports, --check-untyped-defs, --disallow-incomplete-defs ]
exclude: '^tests'