We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be62027 commit f4ea882Copy full SHA for f4ea882
1 file changed
.pre-commit-config.yaml
@@ -1,6 +1,27 @@
1
repos:
2
- repo: local
3
hooks:
4
+ - id: ruff-check
5
+ name: Ruff (lint)
6
+ entry: ruff check .
7
+ language: system
8
+ pass_filenames: false
9
+ types: [ python ]
10
+
11
+ - id: ruff-format
12
+ name: Ruff (format)
13
+ entry: ruff format .
14
15
16
17
18
+ - id: mypy
19
+ name: Mypy
20
+ entry: mypy .
21
22
23
24
25
- id: codeclone
26
name: CodeClone
27
entry: codeclone
0 commit comments