mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-02-13 20:35:41 +01:00
- Add ty.toml configuration with Django project root - Add py.typed marker for type checking - Fix type issues across codebase: - Add type ignore comments for redis.exceptions imports - Fix django.db.models.functions imports in utils - Fix getattr usage in accounts/forms - Remove unnecessary type annotations in dashboard/forms - Configure ty to exclude migrations and respect ignore files - All ty checks now pass (29 diagnostics -> 0)
16 lines
373 B
Plaintext
16 lines
373 B
Plaintext
[uv]
|
|
# Keep the uv.lock file up to date
|
|
keep-lockfile = true
|
|
|
|
# Cache compiled bytecode for dependencies
|
|
compile-bytecode = true
|
|
|
|
# Verbosity of output
|
|
verbosity = "minimal"
|
|
|
|
; # Define which part of the environment to check
|
|
; environment-checks = ["python", "dependencies"]
|
|
|
|
# How to resolve dependencies not specified with exact versions
|
|
dependency-resolution = "strict"
|