feat: remove kivy frontend, add litestar
This commit is contained in:
parent
b71bedb62a
commit
6b873348c7
48 changed files with 3092 additions and 800 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue