ci(lint): configure mypy and pylint to pass in CI workflow

- Add types-requests and types-paramiko stubs to requirements-dev.txt
- Configure mypy disable_error_code in pyproject.toml for SQLAlchemy/ORM
  false positives and dynamic library type issues
- Add comprehensive pylint configuration in pyproject.toml with documented
  suppressions for framework-specific patterns and false positives
- Update CI workflow to use pyproject.toml config instead of inline flags
- Both mypy and pylint now pass with exit code 0

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-12 03:39:54 +00:00
parent ca1c6010d0
commit 30b237dc73
3 changed files with 86 additions and 4 deletions
+4
View File
@@ -20,6 +20,10 @@ mypy>=1.8.0
pylint>=3.0.0
isort>=5.13.0
# Type stubs for mypy
types-requests>=2.31.0
types-paramiko>=3.0.0
# Security scanning
bandit>=1.7.6
safety>=3.0.0