Micha Reiser
Micha Reiser
This may be fixed by #3740 (at least, the LSP shouldn't crash and instead print a message to the log)
@bazo We released a new preview of Rome today. Can you try it and let us know if you're still experiencing the problem?
The rule itself fits into ruff. It is similar to [if-expr-min-max](https://docs.astral.sh/ruff/rules/if-expr-min-max/) but we have other rules that capture the same problem but differ in the syntax. I think we should...
> Yes I can second this request as well. While investigating the transition to ruff, this inconsistency to black is causing many changes across our code base. Thanks for reporting....
This rule fits into ruff as a suspicious rule. I think we should rename the rule to `never-awaited-coroutines` so that `allow(never-awaited-coroutines)` reads better.
I think the issue is related to https://github.com/astral-sh/uv/issues/1779 The `VIRTUAL_ENV=` hack doesn't work on Windows because the Python executable is in a different location than what's expected by `uv`. We're...
> > Do you mean 0.1.11 or the main branch? > > 0.1.11 Charlie's changes have not been released yet. Please create a new issue if you're still experience issues...
What's your expectation if a file only contains an `off` comment without a corresponding `on` comment later in the file?
> @MichaReiser saw you were mentioned above, are we good to move forward on this design? Do we want to support ignoring multiple rules at once? Technically: I recommend waiting...
@flbraun I believe your example might be worth raising a separate issue. I would have expected that one of those work, but none of them do. ```python def get_all(cursor, table_name):...