-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
49 lines (43 loc) · 1.22 KB
/
.pre-commit-config.yaml
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
42
43
44
45
46
47
48
49
exclude: "docs|node_modules|migrations|.git|.tox"
default_stages: [commit]
fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
exclude: conda/meta.yaml
# Can run individually with `pre-commit run black --all-files`
- repo: https://github.com/psf/black
rev: 24.4.2
hooks:
- id: black
# Can run individually with `pre-commit run isort --all-files`
- repo: https://github.com/timothycrosley/isort
rev: 5.13.2
hooks:
- id: isort
args:
- --profile
- black
# - repo: https://github.com/srstevenson/nb-clean
# rev: 3.2.0
# hooks:
# - id: nb-clean
# # Can run individually with `pre-commit run mypy --all-files`
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v1.10.0
# hooks:
# - id: mypy
# args: [--config-file=pyproject.toml]
# language: system
# - repo: local
# hooks:
# - id: pytest # pytest is a pre-commit hook
# name: pytest
# entry: pytest
# language: system
# types: [python]
# exclude: ^venv/ ^.git/ ^.vscode/ ^.DS_Store