Micha Reiser
Micha Reiser
> definitely ty check --fix for consistency with ruff There's a two-year-old proposal from @zanieb to deprecate `ruff check-- fix` in favor of `ruff fix`. We just never got to...
The proposal, is unfortunately, an internal notion document. But it also says > We want to retain a good single command interface, so ruff check --fix should remain available. This...
I started hacking on something but there are a few more wrinkles to solve (e.g. ty has a watch mode, how to support notebooks, ..., we need to render all...
You can use `tool.ty.overrides` to change the severity (enable or disable rules) for a subset of files: ```toml [[tool.ty.overrides]] include = ["tests/**", "**/test_*.py"] [tool.ty.overrides.rules] possibly-unresolved-reference = "warn" ``` Unlike mypy,...
Great. I'll close this issue then. But let us know if you run into any problems.
> Oh sorry, just to check. Is it just the case that its not possible at the moment to do per-module ignores? Can you say more about what you mean...
I'll close this as I considere it covered by #2082 and #1354
Both pylance and pyrefly render the documentation from the ancestor class `Model` when hovering a constructor call. But neither render the `__doc__` attribute There are two things we want to...
I'm afraid. This isn't supported today. The formatter doesn't support the concept of region comments and always indents the comments to the same level as the statements. I hoped that...
TypeScript does a slightly different distinction (at least in their non LSP based extension) but I liked having the option to jump to both. I think what's important is that...