-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path.pre-commit-config.yaml
38 lines (37 loc) · 1019 Bytes
/
.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
exclude: |
(?x)
^README\.md$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
- repo: https://github.com/crate-ci/typos
rev: v1.22.9
hooks:
- id: typos
exclude: ^tests/|.xsd$
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
hooks:
- id: ruff
args: [ --fix, --show-fixes]
- id: ruff-format
exclude: ^nfelib/[^/]+\.py$
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
hooks:
- id: mypy
files: ^(nfelib/)
args: [ "--check-untyped-defs", "--ignore-missing-imports" ]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
additional_dependencies:
types_or: [markdown]
args: [--prose-wrap=always, --print-width=88]
exclude: ^nfelib/[^/]+\.xml$