-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
98 lines (98 loc) · 2.95 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
98 lines (98 loc) · 2.95 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
98
---
repos:
- repo: local
hooks:
- id: ruff
name: 🐶 Ruff
language: system
types: [python]
entry: uv run ruff --fix
require_serial: true
stages: [commit, push, manual]
- id: black
name: ☕️ Format using black
language: system
types: [python]
entry: uv run black
require_serial: true
- id: blacken-docs
name: ☕️ Format documentation examples using black
language: system
files: '\.(rst|md|markdown|py|tex)$'
entry: uv run blacken-docs
require_serial: true
- id: check-ast
name: 🐍 Check Python AST
language: system
types: [python]
entry: uv run check-ast
- id: check-docstring-first
name: ℹ️ Check docstring is first
language: system
types: [python]
entry: uv run check-docstring-first
- id: codespell
name: ✅ Check code for common misspellings
language: system
types: [text]
exclude: ^uv\.lock$
entry: uv run codespell
- id: mypy
name: 🆎 Static type checking using mypy
language: system
types: [python]
entry: uv run mypy
require_serial: true
- id: prettier
name: 💄 Ensuring files are prettier
language: system
types: [yaml, json, markdown]
entry: npm run prettier
pass_filenames: false
- id: pylint
name: 🌟 Starring code with pylint
language: system
types: [python]
entry: uv run pylint
- id: pytest
name: 🧪 Running tests and test coverage with pytest
language: system
types: [python]
entry: uv run pytest
pass_filenames: false
- id: yamllint
name: 🎗 Check YAML files with yamllint
language: system
types: [yaml]
entry: uv run yamllint
- repo: builtin
hooks:
- id: check-case-conflict
name: 🔠 Check for case conflicts
- id: check-executables-have-shebangs
name: 🧐 Check that executables have shebangs
stages: [pre-commit, pre-push, manual]
- id: check-json
name: { Check JSON files
- id: check-merge-conflict
name: 💥 Check for merge conflicts
- id: check-symlinks
name: 🔗 Check for broken symlinks
- id: check-toml
name: ✅ Check TOML files
- id: check-xml
name: ✅ Check XML files
- id: check-yaml
name: ✅ Check YAML files
- id: detect-private-key
name: 🕵️ Detect Private Keys
- id: end-of-file-fixer
name: ⮐ Fix End of Files
stages: [pre-commit, pre-push, manual]
- id: no-commit-to-branch
name: 🛑 Don't commit to main branch
args:
- --branch=main
- id: trailing-whitespace
name: ✄ Trim Trailing Whitespace
stages: [pre-commit, pre-push, manual]