Evan Doyle
Evan Doyle
Right now the AccountClient captures a union of all Accounts in the IDL and uses this to type things like the return from `fetch`. It would be better if each...
When using `bridge` configuration in a local environment on Linux with a standard Docker setup, all Docker calls will fail. `docker.errors.DockerException: Error while fetching server API version: ('Connection aborted.', PermissionError(13,...
As mentioned in #101, it's confusing that `exclude_paths` uses regex instead of file globbing. Conceptually, this behavior should match that of other linters like ruff. Using that example, it makes...
Right now, when we build the 'module tree' from the `tach.toml` configuration, we validate against circular dependencies and the expected root module treatment (if necessary). However, when these checks fail,...
Since we now ship an LSP server within Tach (#484), it should be possible to integrate Tach into configurable editors like vim/neovim with end-user configuration. We should provide documentation on...
Right now, the LSP server built into Tach is very naive. When a Python document is opened or saved, it will run a full `tach check` and then filter the...