File tree Expand file tree Collapse file tree 3 files changed +118
-2
lines changed
Expand file tree Collapse file tree 3 files changed +118
-2
lines changed Original file line number Diff line number Diff line change 1+ repos :
2+ - repo : https://github.com/pre-commit/pre-commit-hooks
3+ rev : v6.0.0
4+ hooks :
5+ - id : check-case-conflict
6+ - id : check-executables-have-shebangs
7+ - id : check-merge-conflict
8+ - id : check-symlinks
9+ - id : end-of-file-fixer
10+ - id : trailing-whitespace
11+ - id : check-added-large-files
12+ args : ["--maxkb=1024"]
13+ - id : check-yaml
14+ args : ["--allow-multiple-documents"]
15+ - id : check-toml
16+ - id : detect-private-key
17+ - repo : local
18+ hooks :
19+ - id : black
20+ name : black
21+ entry : .venv/bin/black
22+ language : system
23+ types_or : [python, pyi]
24+ require_serial : true
25+ - id : isort
26+ name : isort
27+ entry : .venv/bin/isort
28+ language : system
29+ types : [python]
30+ - id : flake8
31+ name : flake8
32+ entry : .venv/bin/flake8
33+ language : system
34+ types : [python]
35+ require_serial : true
36+ - id : mypy
37+ name : mypy
38+ entry : .venv/bin/mypy
39+ language : system
40+ types : [python]
41+ require_serial : true
Original file line number Diff line number Diff line change @@ -13,4 +13,7 @@ members = [
1313]
1414
1515[dependency-groups ]
16- dev = [" devservices>=1.2.2" ]
16+ dev = [
17+ " devservices>=1.2.2" ,
18+ " pre-commit>=4.2.0" ,
19+ ]
You can’t perform that action at this time.
0 commit comments