committed by
GitHub
4 changed files with 55 additions and 12 deletions
@ -0,0 +1,25 @@ |
|||
# See https://pre-commit.com for more information |
|||
# See https://pre-commit.com/hooks.html for more hooks |
|||
default_language_version: |
|||
python: python3.10 |
|||
repos: |
|||
- repo: https://github.com/pre-commit/pre-commit-hooks |
|||
rev: v4.4.0 |
|||
hooks: |
|||
- id: check-added-large-files |
|||
- id: check-toml |
|||
- id: check-yaml |
|||
args: |
|||
- --unsafe |
|||
- id: end-of-file-fixer |
|||
- id: trailing-whitespace |
|||
- repo: https://github.com/charliermarsh/ruff-pre-commit |
|||
rev: v0.2.2 |
|||
hooks: |
|||
- id: ruff |
|||
args: |
|||
- --fix |
|||
- id: ruff-format |
|||
ci: |
|||
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks |
|||
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate |
@ -1,3 +0,0 @@ |
|||
[flake8] |
|||
max-line-length = 88 |
|||
exclude = .git,__pycache__,__init__.py,.mypy_cache,.pytest_cache |
@ -1,4 +0,0 @@ |
|||
[mypy] |
|||
plugins = pydantic.mypy, sqlmypy |
|||
ignore_missing_imports = True |
|||
disallow_untyped_defs = True |
Loading…
Reference in new issue