Add settings and extension recommendations (#139)

- Added recommended settings for the Pylance and Pyright extensions
- Enabled pytest and debugging support in configuration
- Reformatted code with Prettier
---------
Co-authored-by: Chris <git@nootch.de>
This commit is contained in:
Chris
2024-11-10 23:00:16 +01:00
committed by GitHub
parent 81de14d90a
commit df202db242
10 changed files with 135 additions and 84 deletions

View File

@@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
- name: Install dependencies
run: |
@@ -26,4 +26,4 @@ jobs:
- name: Run Pytest
run: |
pip install -e .
python -m pytest -vs --cov modules --cov-report term-missing tests/
python -m pytest -vs --cov src --cov-report term-missing tests/