forked from LLMSQL/llmsql-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
74 lines (68 loc) · 1.82 KB
/
.pre-commit-config.yaml
File metadata and controls
74 lines (68 loc) · 1.82 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
# Pre-commit hooks configuration
# Setup: pre-commit install
# Run manually: pre-commit run --all-files
repos:
# Ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.4
hooks:
# Run the linter
- id: ruff
args: [--fix]
types_or: [python, pyi]
# Run the formatter
- id: ruff-format
types_or: [python, pyi]
# Mypy
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
hooks:
- id: mypy
args: [--ignore-missing-imports, --check-untyped-defs]
files: ^llmsql/
additional_dependencies:
- types-PyYAML
- types-tqdm
- types-requests
# Run tests with pytest
- repo: local
hooks:
- id: pytest
name: pytest
entry: pytest
language: system
pass_filenames: false
always_run: true
args:
- tests/
- -v
- --tb=short
stages: [pre-commit]
# Standard pre-commit hooks
- 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 syntax
- id: check-yaml
# Check TOML syntax
- id: check-toml
# Check for added large files
- id: check-added-large-files
args: [--maxkb=1000]
# Trim trailing whitespace
- id: trailing-whitespace
# Ensure files end with newline
- id: end-of-file-fixer
# Check JSON syntax
- id: check-json
# Check for debugger imports
- id: debug-statements
# Configuration for specific hooks
default_language_version:
python: python3.11
# Run these hooks on every commit
default_stages: [pre-commit]