forked from KapJI/capital-gains-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
81 lines (81 loc) · 2.14 KB
/
.pre-commit-config.yaml
File metadata and controls
81 lines (81 loc) · 2.14 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.12.0-2
hooks:
- id: shfmt
- repo: local
hooks:
- id: codespell
name: codespell
entry: uv run codespell --write-changes
language: system
pass_filenames: false
- id: dprint
name: dprint format
language: system
entry: uv run dprint fmt
pass_filenames: false
types_or:
- dockerfile
- json
- markdown
- toml
- yaml
- id: ruff-format
name: ruff format
entry: uv run ruff format
language: system
types: [python]
require_serial: true
- id: ruff
name: ruff check
entry: uv run ruff check --fix
language: system
types: [python]
require_serial: true
- id: mypy
name: mypy
entry: uv run mypy cgt_calc tests
language: system
types: [python]
pass_filenames: false
- id: pylint
name: pylint
entry: uv run pylint
language: system
types: [python]
require_serial: true
- id: pytest
name: pytest
language: system
entry: uv run pytest
pass_filenames: false
- repo: https://github.com/tcort/markdown-link-check
rev: v3.14.1
hooks:
- id: markdown-link-check
name: markdown link check
args: [-q, --config, .github/markdown-link-check.json]
- repo: https://github.com/cdce8p/python-typing-update
rev: v0.7.2
hooks:
# Run `python-typing-update` hook manually from time to time
# to update python typing syntax.
# Will require manual work, before submitting changes!
- id: python-typing-update
stages: [manual]
args:
- --py312-plus
- --force
- --keep-updates
files: ^.+\.py$