Skip to content

Commit a9f5b07

Browse files
authored
misc: manually update pre-commit versions (#275)
1 parent e3e06b0 commit a9f5b07

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

.gitignore

+33-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
1-
data/
2-
.ipynb_checkpoints/
1+
# Temp files
32
.DS_Store
4-
.vscode
5-
local/
6-
scratch/
3+
*~
4+
buck-out/
5+
6+
# Compiled files
7+
.venv/
8+
__pycache__/
9+
.mypy_cache/
10+
.ruff_cache/
11+
12+
# Distribution / packaging
13+
/build/
14+
/dist/
15+
/*.egg-info/
16+
17+
# Tests and coverage
18+
/.pytest_cache/
19+
/.cache/
20+
/data/
21+
22+
# docs
23+
/docs/generated/
24+
/docs/_build/
25+
26+
# IDEs
27+
/.idea/
28+
/.vscode/
29+
30+
# Jupyter
31+
.ipynb_checkpoints/
32+
33+
# node
34+
node_modules/

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default_stages:
77
minimum_pre_commit_version: 2.16.0
88
repos:
99
- repo: https://github.com/pre-commit/mirrors-prettier
10-
rev: v3.1.0
10+
rev: v4.0.0-alpha.8
1111
hooks:
1212
- id: prettier
1313
types: [yaml]
@@ -34,7 +34,7 @@ repos:
3434
)$
3535
3636
- repo: https://github.com/astral-sh/ruff-pre-commit
37-
rev: v0.1.11
37+
rev: v0.3.7
3838
hooks:
3939
- id: ruff
4040
args: [--fix, --exit-non-zero-on-fix]
@@ -43,7 +43,7 @@ repos:
4343
types_or: [python, pyi, jupyter]
4444

4545
- repo: https://github.com/pre-commit/pre-commit-hooks
46-
rev: v4.5.0
46+
rev: v4.6.0
4747
hooks:
4848
- id: detect-private-key
4949
- id: check-ast

0 commit comments

Comments
 (0)