-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
97 lines (89 loc) · 2.51 KB
/
.pre-commit-config.yaml
File metadata and controls
97 lines (89 loc) · 2.51 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
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
97
exclude: "^docs/|/migrations/|devcontainer[.]json$|.*[.]html$|.*[.]css$|.*[.]js$|.*[.]svg$|.*[.]dist$"
default_language_version:
python: python3.13
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
exclude: ^tests/artifacts/
- id: end-of-file-fixer
exclude: ^tests/artifacts/
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
- id: debug-statements
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: detect-private-key
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.8.19
hooks:
- id: uv-lock
args: ["--check"]
# Run the Ruff linter.
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.1
hooks:
# Linter
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
exclude: ^tests/artifacts/
# Formatter
- id: ruff-format
exclude: ^tests/artifacts/
# Use a Local Workflow to ensure that `mypy` picks up all the local up-to-date dependencies
- repo: local
hooks:
- args:
[
"run",
"--",
"--cache-fine-grained",
"--config-file",
"pyproject.toml",
]
description: Static type checker for Python
# https://github.com/pre-commit/mirrors-mypy/blob/main/.pre-commit-hooks.yaml
entry: dmypy
id: mypy
language: system
name: mypy
require_serial: true
types_or: [python, pyi]
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v1.15.0
# hooks:
# - id: mypy
# args: [
# "--config-file",
# "pyproject.toml",
# ]
# additional_dependencies:
# - "deepdiff"
# - "hypothesis"
# - "packaging"
# - "platformdirs"
# - "pytest"
# - "tomlkit"
# - "tzlocal"
# - "urwid"
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1 # check for the latest version
hooks:
- id: autoflake
args: [
"--in-place",
"--remove-all-unused-imports",
"--remove-unused-variables",
"--expand-star-imports"
]
additional_dependencies: ["autoflake"]
# sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date
ci:
autoupdate_schedule: weekly
skip: []
submodules: false