-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
41 lines (38 loc) · 1.03 KB
/
.pre-commit-config.yaml
File metadata and controls
41 lines (38 loc) · 1.03 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
34
35
36
37
38
39
40
41
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: mixed-line-ending
- id: debug-statements
- id: destroyed-symlinks
- id: fix-byte-order-marker
- id: check-merge-conflict
- id: name-tests-test
args: [--pytest-test-first]
- repo: https://github.com/pycqa/flake8
rev: '7.2.0'
hooks:
- id: flake8
additional_dependencies:
- Flake8-pyproject
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: "v1.15.0"
hooks:
- id: mypy
args: []
exclude: tests/
additional_dependencies:
- pyparsing
- types-psutil
- pyzmq
- numpy