-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
47 lines (41 loc) · 1.17 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
# 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.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
additional_dependencies: [toml]
exclude: src/scope/tests
- id: isort
name: isort (cython)
types: [cython]
additional_dependencies: [toml]
exclude: src/scope/tests
- id: isort
name: isort (pyi)
types: [pyi]
additional_dependencies: [toml]
exclude: src/simmer/tests
- repo: https://github.com/psf/black
rev: 23.7.0
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
exclude: src/simmer/__init__.py
- repo: https://github.com/dfm/black_nbconvert
rev: v0.4.0
hooks:
- id: black_nbconvert
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
hooks:
- id: yamllint
args: [-c=.yamllint]