-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
56 lines (50 loc) · 1.42 KB
/
.pre-commit-config.yaml
File metadata and controls
56 lines (50 loc) · 1.42 KB
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
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
ci:
skip: [mypy] # mypy requires the project venv; runs in GitHub Actions CI instead
default_language_version:
python: python3.12
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-toml
- id: trailing-whitespace
- id: check-executables-have-shebangs
- id: debug-statements
- id: end-of-file-fixer
exclude: '.+main\.min\.css$'
- id: check-added-large-files
- id: check-merge-conflict
- id: fix-byte-order-marker
# Versions must be kept in sync with lockfile (managed by sync-pre-commit-lock PDM plugin)
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.15.12'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/adrienverge/yamllint
rev: v1.38.0
hooks:
- id: yamllint
- repo: https://github.com/rtts/djhtml
rev: '3.0.11'
hooks:
- id: djhtml
- id: djcss
- id: djjs
- repo: https://github.com/adamchainz/djade-pre-commit
rev: "1.9.0"
hooks:
- id: djade
args: [--target-version, "4.2"]
- repo: local
hooks:
- id: mypy
name: mypy
entry: pdm run lint-mypy
language: system
types_or: [python, pyi]
pass_filenames: false
require_serial: true