Draft
Conversation
…tions Add B, C4, FURB, PLR2004, PLR6301, SIM rule sets to ruff extend-select, add pylint W0201. Suppress vendor/ from all new rules; suppress examples/ and docs/ from PLR2004, B905, SIM; suppress tests from PLR2004. Fix all B019 violations: remove @cache from trivially cheap frozen-attrs properties in tui.py; add # noqa: B019 where caching is intentional on slotted frozen classes (process handles, temp dirs, ML models, connections). Fix all B904 violations: add `as err` + `raise ... from err` in 13 except blocks across executor, datafusion, cli, dask_normalize_expr, env_utils, ibis_utils, import_utils, quickgrove_lib, split_lib, ibis_yaml modules. Apply all ruff auto-fixes (safe + unsafe) for the remaining rules across the codebase; add # noqa where patterns are intentional (B008 sentinels, B018 side-effect property access, B017 environment-dependent exceptions, B023/B024/B027 abstract base classes, SIM117 contextlib.suppress nesting). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add B, C4, FURB, PLR2004, PLR6301, SIM rule sets to ruff extend-select, add pylint W0201. Suppress vendor/ from all new rules; suppress examples/ and docs/ from PLR2004, B905, SIM; suppress tests from PLR2004.
Fix all B019 violations: remove @cache from trivially cheap frozen-attrs properties in tui.py; add # noqa: B019 where caching is intentional on slotted frozen classes (process handles, temp dirs, ML models, connections).
Fix all B904 violations: add
as err+raise ... from errin 13 except blocks across executor, datafusion, cli, dask_normalize_expr, env_utils, ibis_utils, import_utils, quickgrove_lib, split_lib, ibis_yaml modules.Apply all ruff auto-fixes (safe + unsafe) for the remaining rules across the codebase; add # noqa where patterns are intentional (B008 sentinels, B018 side-effect property access, B017 environment-dependent exceptions, B023/B024/B027 abstract base classes, SIM117 contextlib.suppress nesting).