schon/pyrightconfig.json
Egor fureunoir Gorbunov 04cba93ebb Features: 1) Add .gitlab-ci.yml with linting, type-checking, and testing stages using uv image; 2) Introduce .pre-commit-config.yaml with Ruff hooks for code quality enforcement;
Fixes: None;

Extra: Remove unused dependencies (`mypy`, `isort`, `celery-stubs`, etc.), update `uv.lock` with dependency changes, and upgrade versions for `debugpy`, `jupyterlab`, and `ruff`.
2025-12-15 20:19:00 +03:00

23 lines
558 B
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/pyright/schema/pyrightconfig.schema.json",
"typeCheckingMode": "strict",
"pythonVersion": "3.12",
"useLibraryCodeForTypes": true,
"reportMissingTypeStubs": "warning",
"exclude": [
"**/__pycache__/**",
"**/.venv/**",
"**/.uv/**",
"media/**",
"static/**",
"storefront/**",
"**/migrations/**"
],
"executionEnvironments": [
{
"root": "./",
"pythonVersion": "3.12",
"extraPaths": ["./evibes", "./engine"]
}
]
}