File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ repos :
2+ - repo : https://github.com/pre-commit/pre-commit-hooks
3+ rev : v5.0.0
4+ hooks :
5+ - id : trailing-whitespace
6+ - id : end-of-file-fixer
7+ - id : check-yaml
8+ - id : check-toml
9+ - id : check-added-large-files
10+
11+ - repo : https://github.com/astral-sh/ruff-pre-commit
12+ rev : v0.9.0
13+ hooks :
14+ - id : ruff
15+ args : [ --fix ]
16+ - id : ruff-format
17+
18+ - repo : https://github.com/alessandrojcm/commitlint-pre-commit-hook
19+ rev : v9.20.0
20+ hooks :
21+ - id : commitlint
22+ stages : [commit-msg]
23+ additional_dependencies : ['@commitlint/config-conventional']
Original file line number Diff line number Diff line change 1+ module . exports = {
2+ extends : [ '@commitlint/config-conventional' ] ,
3+ } ;
Original file line number Diff line number Diff line change @@ -21,4 +21,9 @@ packages = ["annotator"]
2121include-package-data = true
2222
2323[tool .setuptools .package-data ]
24- annotator = [" templates/*.json" ]
24+ annotator = [" templates/*.json" ]
25+
26+ [dependency-groups ]
27+ dev = [
28+ " pre-commit>=4.5.1" ,
29+ ]
You can’t perform that action at this time.
0 commit comments