Skip to content

Commit e8d2abd

Browse files
committed
Continue implementing PSQLPy engine for piccolo
Signed-off-by: chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>
1 parent f23a2df commit e8d2abd

File tree

5 files changed

+302
-167
lines changed

5 files changed

+302
-167
lines changed

.pre-commit-config.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v2.1.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- repo: https://github.com/pycqa/isort
7+
rev: 5.12.0
8+
hooks:
9+
- id: isort
10+
name: isort
11+
pass_filenames: false
12+
always_run: true
13+
args: ["./"]
14+
- repo: https://github.com/pre-commit/mirrors-mypy
15+
rev: v1.5.1
16+
hooks:
17+
- id: mypy
18+
name: mypy
19+
always_run: true
20+
pass_filenames: false
21+
args: ["./"]
22+
- repo: https://github.com/astral-sh/ruff-pre-commit
23+
rev: v0.0.291
24+
hooks:
25+
- id: ruff
26+
name: ruff check
27+
pass_filenames: false
28+
always_run: true
29+
args: ["./", "--fix"]

poetry.lock

Lines changed: 41 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)