-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
50 lines (44 loc) · 1.3 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
50
# inspired by exoplanet:
# https://github.com/exoplanet-dev/exoplanet/blob/master/.pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
additional_dependencies: [toml]
exclude: src/cortecs/tests
- id: isort
name: isort (cython)
types: [cython]
additional_dependencies: [toml]
exclude: src/cortecs/tests
- id: isort
name: isort (pyi)
types: [pyi]
additional_dependencies: [toml]
exclude: src/cortecs/tests
- repo: https://github.com/psf/black
rev: 24.2.0
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
additional_dependencies: [toml]
exclude: src/cortecs/__init__.py
args: ["--target-version", "py38"]
- repo: https://github.com/dfm/black_nbconvert
rev: v0.4.0
hooks:
- id: black_nbconvert
additional_dependencies: [toml]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
args: [-c=.yamllint]