Zanie Blue

Results 2953 comments of Zanie Blue

Just for some more context, can someone explain to me how `--config --config ` differs from `--config extend= --config `?

I'm not sure! The configuration hierarchy is confusing and inheritance via extend is even more complicated. I'm asking for someone to try it, I guess, so we can understand what...

Oh okay, I think we _can_ support multiple configuration files on the command line. I originally intended for it to be that way, but I think it might have been...

@charliermarsh do we want to deprecate one of them? which one?

@nicornk you can use the unambiguous alternate syntax e.g. `df = df.where(F.col("colName").is_(True))` or disable the rule. Additionally, once Ruff has type inference, we will avoid suggesting a change to `col...

Note [as of v0.1.0](#7769 ) we do not apply unsafe fixes by default — so this fix will not be applied by default.

Please let's not make this issue a debate about how `if _ == True`, `if _ is True`, and `if _` should be used or whether `E712` is valid in...

Thanks @psychedelicious. Would you be willing to open a pull request?

Thanks for issue. I think the first step may be to just change the violation message to suggest using a `_`. It seems like a separate error code might help...

@bluetech I think the proposal here is that we'd avoid raising a violation for `x, _y = func()` as well as `x, _ = func()` which should avoid the rebinding...