chore: reduce lint and type-check noise #187

Merged
didericis merged 32 commits from feat/linting-and-type-fixes into main 2026-06-04 12:24:39 -04:00
2 changed files with 9 additions and 2 deletions
Showing only changes of commit 0ca81b102c - Show all commits
+3 -2
View File
@@ -18,11 +18,12 @@ jobs:
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: requirements-dev.txt
- name: Install dependencies
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pyright
pip install -r requirements-dev.txt
- name: Run pylint
run: |
+6
View File
@@ -0,0 +1,6 @@
# Development and linting dependencies only.
# The bot-bottle project itself has no runtime dependencies.
# These tools are used for code quality checks in CI/CD.
pylint>=3.0.0
pyright>=1.1.300