-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
91 lines (72 loc) · 2.23 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
91 lines (72 loc) · 2.23 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
# Pre-commit hooks configuration for MDxApp
# Run: pre-commit install
# Then: pre-commit run --all-files
repos:
# Black - Python code formatter
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
language_version: python3.10
args: ['--config', 'pyproject.toml']
# Ruff - Fast Python linter
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.4
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
# Mypy - Static type checker
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies:
- pydantic>=2.9.0
- types-requests
args: ['--config-file', 'pyproject.toml']
exclude: '^tests/'
# General file cleanup
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
# Check for files that would conflict in case-insensitive filesystems
- id: check-case-conflict
# Check for merge conflicts
- id: check-merge-conflict
# Check YAML files for syntax errors
- id: check-yaml
exclude: '.pre-commit-config.yaml'
# Check JSON files for syntax errors
- id: check-json
# Check for added large files
- id: check-added-large-files
args: ['--maxkb=1000']
# Ensure files end with newline
- id: end-of-file-fixer
exclude: '\.json$'
# Remove trailing whitespace
- id: trailing-whitespace
exclude: '\.md$'
# Check for private keys
- id: detect-private-key
# Check Python files for syntax errors
- id: check-ast
# Fix mixed line endings
- id: mixed-line-ending
args: ['--fix=lf']
# Check for common security issues
- repo: https://github.com/PyCQA/bandit
rev: 1.7.10
hooks:
- id: bandit
args: ['-c', 'pyproject.toml', '-r', 'src/']
additional_dependencies: ['bandit[toml]']
# Configuration
default_language_version:
python: python3.10
# Only run on specific stages
default_stages: [commit]
# Fail fast - stop on first failure
fail_fast: false
# Minimum pre-commit version
minimum_pre_commit_version: '3.0.0'