-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
67 lines (59 loc) · 1.53 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
---
fail_fast: true
repos:
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v5.0.0'
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-docstring-first
- id: check-json
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: 'v0.43.0'
hooks:
- id: markdownlint-fix
- repo: local
hooks:
# use system ruff as it should be installed for the IDE integration anyway
- id: ruff-check
name: ruff-check
entry: ruff check
args: [
'--force-exclude',
'--fix',
]
language: system
types_or: [python, pyi]
- id: ruff-format
name: ruff-format
entry: ruff format
args: [
'--force-exclude',
]
language: system
types_or: [python, pyi]
# use system mypy as type checking requires dependencies to be installed anyway
- id: mypy
name: mypy
entry: mypy
args: [
'--install-types',
'--non-interactive',
'--scripts-are-modules',
]
language: system
types_or: [python, pyi]