You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(dev): replace mypy with ty for type checking (#60)
* refactor(dev): replace mypy with ty for type checking
- Remove mypy and types-requests from dev dependencies
- Update justfile to use ty check command
- Update CI workflow to run ty instead of mypy
- Update flake.nix pre-commit hook to use ty
- Update documentation references in CLAUDE.md, README.md and rules
* fix(types): add ty ignore comments for optional dependencies
- Add ty: ignore[unresolved-import] for langgraph and mcp imports
(these are optional dependencies not always installed)
- Add ty: ignore[invalid-argument-type] for bm25s.tokenize stemmer=None
(upstream type stub incorrectly requires callable)
- Add ty: ignore[invalid-assignment] for dynamic schema_class
- Remove unused TYPE_CHECKING import block in langgraph integration
0 commit comments