Bump ruff-pre-commit to v0.3.2#412
Merged
Merged
Conversation
Secrus
approved these changes
Mar 15, 2024
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.
See details below for changes overview sourced from the Ruff's changelog.
As of 08bcb3c, the update implies updates in 3 files.
The current ruff-pre-commit version runs some linter-formatter conflicting rules.
Details
0.3.2
Preview features
withitem formatting for Python 3.8 or older (#10276)Rule changes
pyupgrade] Allow fixes for f-string rule regardless of line length (UP032) (#10263)pycodestyle] Include actual conditions in E712 diagnostics (#10254)Bug fixes
withitems formatting (#10274)Parameterrange for*argsand**kwargs(#10283)typing.Annotatedsubscripts as type definitions (#10285)0.3.1
Preview features
pycodestyle] Fix E301 not triggering on decorated methods. (#10117)pycodestyle] Respectisortsettings in blank line rules (E3*) (#10096)pycodestyle] Make blank lines in typing stub files optional (E3*) (#10098)pylint] Implementsingledispatch-method(E1519) (#10140)pylint] Implementuseless-exception-statement(W0133) (#10176)Rule changes
flake8-debugger] Check for use ofdebugpyandptvsddebug modules (#10177) (#10194)pyupgrade] Generate diagnostic for all valid f-string conversions regardless of line length (UP032) (#10238)pep8_naming] Add fixes forN804andN805(#10215)CLI
ruff format --diff(#10110)--configand--isolatedglobal flags (#10150)--config(#10219)Configuration
required-version(#10216)default-sectionsetting (#10149)Bug fixes
CapWordsmessage (#10220)flake8-raise] Avoid false-positives for parens-on-raise withfuture.exception()(RSE102) (#10206)pylint] Add fix for unary expressions inPLC2801(#9587)ruff] Fix RUF028 not allowing# fmt: skipon match cases (#10178)0.3.0
This release introduces the new Ruff formatter 2024.2 style and adds a new lint rule to
detect invalid formatter suppression comments.
Preview features
flake8-bandit] Remove suspicious-lxml-import (S410) (#10154)pycodestyle] Allowos.environmodifications between imports (E402) (#10066)pycodestyle] Don't warn about a single whitespace character before a comma in a tuple (E203) (#10094)Rule changes
eradicate] Detect commented outcasestatements (ERA001) (#10055)eradicate] Detect single-line code fortry:,except:, etc. (ERA001) (#10057)flake8-boolean-trap] Allow boolean positionals in__post_init__(#10027)flake8-copyright] Allow © in copyright notices (#10065)isort]: Use one blank line after imports in typing stub files (#9971)pylint] New Ruledict-iter-missing-items(PLE1141) (#9845)pylint] Ignoresys.versionandsys.platform(PLR1714) (#10054)pyupgrade] Detect literals with unary operators (UP018) (#10060)ruff] Expand rule forlist(iterable).pop(0)idiom (RUF015) (#10148)Formatter
This release introduces the Ruff 2024.2 style, stabilizing the following changes:
withparentheses when targeting Python 3.9 or newer (#9222)...) in typing stub files (#9155)...) body (#7440, #9240)CLI
extendas part of a--configflag (#10135)buildfrom the default exclusion list (#10093)ruff <path>,ruff --explain,ruff --clean, andruff --generate-shell-completionin favor ofruff check <path>,ruff rule,ruff clean, andruff generate-shell-completion(#10169)--formatfromruff ruleandruff linter(#10170)Bug fixes
flake8-bugbear] Avoid adding default initializers to stubs (B006) (#10152)flake8-type-checking] Respect runtime-required decorators for function signatures (#10091)pycodestyle] Mark fixes overlapping with a multiline string as unsafe (W293) (#10049)pydocstyle] Trim whitespace when removing blank lines after section (D413) (#10162)pylint] Delete entire statement, including semicolons (PLR0203) (#10074)ruff] Avoid f-string false positives ingettextcalls (RUF027) (#10118)ruffcrashing on PowerPC systems because of too small page size (#10080)Performance
Documentation
line-lengthoption: fix link topycodestyle.max-line-length(#10136)0.2.2
Highlights include:
--preview).--configargument (e.g.,
--config "lint.isort.combine-as-imports=false").Preview features
pycodestyle] Add blank line(s) rules (E301,E302,E303,E304,E305,E306) (#9266)refurb] Implementreadlines_in_for(FURB129) (#9880)Rule changes
ruff] Ensure closing parentheses for multiline sequences are always on their own line (RUF022,RUF023) (#9793)numpy] Add missing deprecation violations (NPY002) (#9862)flake8-bandit] Detectmark_safeusages in decorators (#9887)ruff] Expandasyncio-dangling-task(RUF006) to includenew_event_loop(#9976)flake8-pyi] Ignore 'unused' private type dicts in class scopes (#9952)Formatter
indent-style=tabs(#9915)preservemode (#9922)CLI
Bug fixes
show-settingsfilters directory-agnostic (#9866)DebugText(#9953)flake8-simplify] Avoid false positive withasyncfor loops (SIM113) (#9996)flake8-trio] Respectasync withintimeout-without-await(#9859)perflint] Catch a wider range of mutations inPERF101(#9955)pycodestyle] FixE30Xpanics on blank lines with trailing white spaces (#9907)pydocstyle] Allow usingparametersas a subsection header (D405) (#9894)pydocstyle] Fix blank-line docstring rules for module-level docstrings (#9878)pylint] Accept 0.0 and 1.0 as common magic values (PLR2004) (#9964)pylint] Avoid suggesting set rewrites for non-hashable types (#9956)ruff] Avoid false negatives with string literals inside of method calls (RUF027) (#9865)ruff] Fix panic on with f-string detection (RUF027) (#9990)ruff] Ignore builtins when detecting missing f-strings (#9849)Performance
memchrfor string lexing (#9888)memchrfor tab-indentation detection (#9853)Result<Tok, LexicalError>size by usingBox<str>instead ofString(#9885)Exprfrom 80 to 64 bytes (#9900)0.2.1
This release includes support for range formatting (i.e., the ability to format specific lines
within a source file).
Preview features
refurb] Implementmissing-f-string-syntax(RUF027) (#9728)Formatter
--rangeoption toruff format(#9733)Bug fixes
__get__and__set__fromunnecessary-dunder-call(#9791)Protocolin ellipsis removal (#9841)Performance
C408(#9822)C400,C401,C410, andC418(#9819)AhoCorasickto speed up quote match (#9773)C405andC409(#9821)zero-sleep-call(#9766)C403(#9818)Documentation
max-pos-argsexample tomax-positional-args(#9797)weak_cryptographic_key.rs(#9774)ANNrules in changelog (#9771)max-positional-args(#9838)