fix(lint): Fix linting issues #487

Merged
luke merged 4 commits from fix/lint into main 2025-06-06 19:39:12 +02:00
2 changed files with 9 additions and 2 deletions
Showing only changes of commit 0a38b8b4a4 - Show all commits

View File

@ -40,11 +40,15 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: uv sync run: uv sync
# - name: Lint
# run: |
# uv run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt app/ tests/
# cat lintreport.txt
- name: Lint - name: Lint
run: | run: |
uv run pylint --fail-under=8 --recursive=yes --output-format=parseable app/ tests/ # --output=lintreport.txt uv run pylint --fail-under=8 --recursive=yes --output-format=parseable app/ tests/
cat lintreport.txt
- name: Unit Test - name: Unit Test
run: | run: |

View File

@ -32,3 +32,6 @@ includes = []
[build-system] [build-system]
requires = ["pdm-backend"] requires = ["pdm-backend"]
build-backend = "pdm.backend" build-backend = "pdm.backend"
[tool.black]
line-length = 101