-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (35 loc) · 940 Bytes
/
.pre-commit-config.yaml
File metadata and controls
35 lines (35 loc) · 940 Bytes
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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
args: [--fix=lf]
- id: check-merge-conflict
- repo: https://github.com/PyCQA/isort
rev: 6.0.1
hooks:
- id: isort
types_or: [python, cython]
args: [--line-length=110, --force-single-line-imports, --profile=black]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.8
hooks:
- id: ruff
types: [python]
exclude: '_\.py$'
args: [--line-length=110, --fix, --exit-non-zero-on-fix, --preview]
- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.16.6
hooks:
- id: cython-lint
types: [cython]
- id: double-quote-cython-strings
types: [cython]
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.7
hooks:
- id: clang-format
types: [c, c++]
exclude: 'python/mir/src/_mir/_mir.cpp'