We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d33ec5 commit c581a5cCopy full SHA for c581a5c
2 files changed
.pre-commit-config.yaml
@@ -9,19 +9,6 @@ repos:
9
- id: check-merge-conflict
10
- id: debug-statements
11
12
- - repo: https://github.com/psf/black
13
- rev: 23.12.1
14
- hooks:
15
- - id: black
16
- language_version: python3.11
17
- args: [--line-length=88]
18
-
19
- - repo: https://github.com/pycqa/isort
20
- rev: 5.13.2
21
22
- - id: isort
23
- args: [--profile=black, --line-length=88]
24
25
- repo: https://github.com/astral-sh/ruff-pre-commit
26
rev: v0.1.9
27
hooks:
test_precommit.py
@@ -0,0 +1,6 @@
1
+def test_function(x: int, y: str) -> str:
2
+ result = f"{x}:{y}"
3
+ return result
4
+
5
6
+print("Testing pre-commit hooks...")
0 commit comments