-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.pre-commit-config.yaml
96 lines (87 loc) · 2.37 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# To run all pre-commit checks, use:
#
# pre-commit run -a
#
# To install pre-commit hooks that run every time you commit:
#
# pre-commit install
#
ci:
autoupdate_commit_msg: "⬆️🪝 update pre-commit hooks"
autofix_commit_msg: "🎨 pre-commit fixes"
skip: [mypy]
repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.5.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-docstring-first
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
# Handling unwanted unicode characters
- repo: https://github.com/sirosen/texthooks
rev: "0.6.3"
hooks:
- id: fix-ligatures
- id: fix-smartquotes
# Clean jupyter notebooks
- repo: https://github.com/srstevenson/nb-clean
rev: "3.1.0"
hooks:
- id: nb-clean
# Check for spelling
- repo: https://github.com/codespell-project/codespell
rev: "v2.2.6"
hooks:
- id: codespell
args: [""]
exclude: ""
types: [python, text, markdown]
# Format configuration files with prettier
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
hooks:
- id: prettier
types_or: [yaml, markdown, html, css, javascript, json]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.14
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
types_or: [python, pyi, jupyter]
exclude: "^src/qutip_qoc/[^/]*\\.ipynb"
- id: ruff-format
types_or: [python, pyi, jupyter]
exclude: "^src/qutip_qoc/[^/]*\\.ipynb"
# Also run Black on examples in the documentation
- repo: https://github.com/adamchainz/blacken-docs
rev: 1.16.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.*]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
files: ^(src|tests)
exclude: "^src/qutip_qoc/[^/]*\\.ipynb"
args: []
additional_dependencies:
- qutip
- qutip-qip
- qutip-qtrl
- numpy
- scipy
- jax
- jaxlib
- diffrax
- pytest
- gymnasium
- stable-baselines3