-
Notifications
You must be signed in to change notification settings - Fork 355
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
100 lines (92 loc) · 2.82 KB
/
.pre-commit-config.yaml
File metadata and controls
100 lines (92 loc) · 2.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
exclude: 'node_modules'
default_stages: [pre-commit]
fail_fast: false
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.8
hooks:
- id: prettier
types_or: [javascript, vue]
# Ignore any files that might contain jinja / bundles
exclude: |
(?x)^(
press/public/dist/.*|
.*node_modules.*|
.*boilerplate.*|
press/www/website_script.js|
press/templates/includes/.*|
press/public/js/.*min.js
)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: debug-statements
- id: trailing-whitespace
files: 'press.*'
exclude: '.*json$|.*txt$|.*csv|.*md|.*svg'
- id: check-merge-conflict
- id: check-ast
- id: check-json
- id: check-toml
- id: check-yaml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.1
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: local
hooks:
- id: commitlint
exclude: '.git'
name: check commit message format
entry: npx commitlint --edit .git/COMMIT_EDITMSG
language: system
stages: [commit-msg]
always_run: true
- id: cspell-commit-msg
name: check commit message spelling
entry: npx cspell --config .cspell.json .git/COMMIT_EDITMSG
language: system
stages: [commit-msg]
always_run: true
- id: cspell-modified-files
name: check spelling of files
entry: sh -c "npx cspell --no-must-find-files --config .cspell.json `git diff --cached -p --name-status | cut -c3- | tr '\n' ' '`"
language: system
stages: [pre-commit]
- id: todo-warning
name: check todos
entry: .github/hooks/todo-warning.sh
language: script
stages: [pre-commit]
verbose: true
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.2
hooks:
- id: mypy
args:
[
--ignore-missing-imports,
--follow-imports=skip,
--exclude-gitignore,
--no-warn-no-return,
--disable-error-code=annotation-unchecked,
--python-version=3.10,
]
exclude: ^tests/|test_.*\.py$ # Exclude the 'tests/' directory and files starting with 'test_'
additional_dependencies:
[
types-requests<2.32,
types-pytz~=2025.2,
types-python-dateutil~=2.9.0,
types-boto3==1.39.14,
types-jwt==0.1.3,
types-setuptools~=81.0,
]
- repo: https://github.com/Yelp/detect-secrets
rev: v1.5.0
hooks:
- id: detect-secrets
args: ['--baseline', '.secrets.baseline']
exclude: package.lock.json