feat: remove kivy frontend, add litestar

This commit is contained in:
cătălin 2024-12-12 12:22:34 +01:00
commit 6b873348c7
No known key found for this signature in database
48 changed files with 3092 additions and 800 deletions

View file

@ -1,3 +1,5 @@
files: src|tests
exclude: ^$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
@ -16,21 +18,40 @@ repos:
- id: mixed-line-ending
args: [ --fix=lf ]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.6.4
hooks:
- id: ruff
args:
- --fix
- --exit-non-zero-on-fix
- id: ruff-format
- repo: local
hooks:
- id: mypy
name: mypy
entry: uv run mypy
entry: uv run mypy --check-untyped-defs
language: system
types: [ python ]
exclude: LICENSE|helm
exclude_types:
- markdown
- css
- html
- id: ruff-format
name: ruff format
language: system
entry: ruff format .
exclude: LICENSE|charts
exclude_types:
- markdown
- css
- html
- javascript
- id: ruff-check
name: ruff check
language: system
entry: ruff check . --fix --exit-non-zero-on-fix
exclude: LICENSE|charts
exclude_types:
- markdown
- css
- html
- javascript