-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pre-commit-config.yaml
53 lines (47 loc) · 1.16 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
51
52
53
repos:
# ruff PyBispectra
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.2
hooks:
- id: ruff
name: ruff lint pybispectra
args: ["--fix"]
files: ^src/pybispectra/
# ruff examples
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.2
hooks:
- id: ruff
name: ruff lint examples
args: ["--fix"]
files: ^examples/
# codespell
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
- tomli
files: ^pybispectra/|^docs/|^examples/
types_or: [python, rst, inc]
# yamllint
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
args: [--strict, -c, .yamllint.yml]
# rstcheck
- repo: https://github.com/rstcheck/rstcheck.git
rev: v6.2.4
hooks:
- id: rstcheck
additional_dependencies:
- tomli
files: ^docs/.*\.(rst|inc)$
# toml-sort
- repo: https://github.com/pappasam/toml-sort.git
rev: v0.24.2
hooks:
- id: toml-sort-fix
ci:
autofix_prs: true