T-256
T-256
> What's the use-case / motivation for invoking `uv` through `python -m uv`? (As an FYI, that will add a bunch of overhead to each invocation.) Actually, this doesn't have...
Since it'd be used mostly by LSP, I'd recommend hidden CLI option `--suggest-noqa`.
> ``` > def my_function( > my_function_arg_1, > my_function_arg_2, > my_function_arg_3, > my_function_arg_4, > ): > pass > ``` > > > > > > This leads to reduced readability,...
> Even with different names, it's still not very readable: Still, it's readable into my eyes, I think it's a personalization choose but perhaps modern editors with syntax highlighting solve...
IIUC `--output-fomat=full` as default is stabilized in v0.5, why keeping this issue for v0.6 milestone?
could it be sorted (the largest at top)?
LGTM and as Charlie said, it could be opt-in via `--preview` and after stabilization make it default behavior. Also, as Zanie said we can have an option to opt-out from...
 Could it possible instead of clearing noqa by hand, add code action when moving cursor on noqa code comments? For example, moving cursor on `# noqa:`, show these code...
Fyi [native server](https://docs.astral.sh/ruff/editors/settings/#nativeserver) now supports use config file inside settings: https://docs.astral.sh/ruff/editors/settings/#configuration
> I would recommend changing it to be the default. In addition to change ruff-vscode, here is the native server related code that needs to be changed: https://github.com/astral-sh/ruff/blob/b9c8113a8a80a464fd042f290553817d8024fdfc/crates/ruff_server/src/session/settings.rs#L50-L58