Initial Commit

This commit is contained in:
2025-03-21 22:35:26 -03:00
commit 0b11408c8f
11 changed files with 777 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
args: [ --config=pyproject.toml ]
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
files: "\\.(py)$"
args: [ --settings-path=pyproject.toml ]

5
.githooks/set-hooks.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
pre-commit install --config .githooks/pre-commit-config.yaml
pre-commit autoupdate --config .githooks/pre-commit-config.yaml