Skip to content

Commit d4a279a

Browse files
committed
feat: add poetry project definition and tooling
1 parent 4756e7b commit d4a279a

File tree

4 files changed

+721
-0
lines changed

4 files changed

+721
-0
lines changed

Diff for: .pre-commit-config.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
fail_fast: true
2+
3+
repos:
4+
- repo: https://github.com/ambv/black
5+
rev: 24.2.0
6+
hooks:
7+
- id: black
8+
args: [--diff, --check]
9+
10+
- repo: https://github.com/pre-commit/mirrors-mypy
11+
rev: v1.7.0
12+
hooks:
13+
- id: mypy
14+
exclude: ^tests/
15+
verbose: true
16+
entry: bash -c '"$@" || true' --
17+
18+
- repo: https://github.com/compilerla/conventional-pre-commit
19+
rev: v3.1.0
20+
hooks:
21+
- id: conventional-pre-commit
22+
stages: [commit-msg]
23+
args: []

0 commit comments

Comments
 (0)