Version 1.0.0 with full `ruff` support
Ruff
This release introduces the new main concept: ruff compatibility.
Now WPS is the only flake8 plugin that is installed.
Other things are done by ruff.
It is faster, it has autofixing, there are lots of rules.
Basically, this way WPS just gain lots
of new rule and plugins almost for free.
It is now stricter than ever! WPS now officially supports
ALL ruff existing rules. This means that there are no conflicts
between two linters.
To run WPS and ruff together, use:
ruff format && ruff check && flake8 --select=WPS .You can copy our configuration from pyproject.toml (for ruff) and setup.cfg (for flake8).
Black
WPS can now also be used with black with default configuration.
However, we recommend using ruff format instead.
Speed
WPS got a lot faster! Because:
- We removed a lot of
flake8plugins - We removed a lot of rules covered by
ruff
Running 0.19.2 (previous version) on https://github.com/dry-python/returns
» time flake8 .
flake8 . 20.63s user 2.47s system 469% cpu 4.919 totalThe same on 1.0.0:
» time flake8 .
flake8 . 8.56s user 0.54s system 898% cpu 1.013 total
Which is 2.4x times faster!
Integrations
We also significantly improved all the integrations!
WPS can now be used as first-class pre-commit hook with:
repos:
- repo: https://github.com/wemake-services/wemake-python-styleguide
rev: 1.0.0
hooks:
- id: wemake-python-styleguideOur GitHub Action also got a lot of new options and fixes.
Removals
- Breaking: Drops
python3.9support - Breaking: Drops
nitpicksupport - Breaking: Drops
flake8-commas,flake8-isort,
flake8-debugger,flake8-string-format,flake8-quotes,
flake8-comprehensions,flake8-bugbear,flake8-docstrings,
flake8-eradicate,flake8-bandit,flake8-broken-line,
flake8-rst-docstrings,pep8-naming
support, useruff formatandruff checkinstead - Breaking: Drops
darglintsupport, because it is unmaintained - Breaking: Removes
WPS113, because is covered bypylintlinter - Breaking: Removes
WPS119, because is covered bypylintlinter - Breaking: Removes
WPS125, because it is covered byrufflinter - Breaking: Removes
WPS302, because it is covered byruffformatter - Breaking: Removes
WPS304, because it is covered byruffformatter - Breaking: Removes
WPS305, because it is covered byruffformatter - Breaking: Removes
WPS306, because it is covered byruffformatter - Breaking: Removes
WPS309, because it is covered byruffformatter - Breaking: Removes
WPS310, because it is covered byruffformatter - Breaking: Removes
WPS313, because it is covered byruffformatter - Breaking: Removes
WPS315, because it is covered byruffformatter - Breaking: Removes
WPS316, because it is covered byrufflinter - Breaking: Removes
WPS317, because it is covered byruffformatter - Breaking: Removes
WPS318, because it is covered byruffformatter - Breaking: Removes
WPS319, because it is covered byruffformatter - Breaking: Removes
WPS320, because it is covered byruffformatter - Breaking: Removes
WPS323, because it is covered byruffformatter - Breaking: Removes
WPS326, because it is covered byrufflinter - Breaking: Removes
WPS329, because it is covered byrufflinter - Breaking: Removes
WPS331, because it is covered byrufflinter - Breaking: Removes
WPS333, because is covered bypylintlinter - Breaking: Removes
WPS337, because it is covered byruffformatter - Breaking: Removes
WPS340, because it is covered byruffformatter - Breaking: Removes
WPS341, because it is covered byruffformatter - Breaking: Removes
WPS343, because it is covered byruffformatter - Breaking: Removes
WPS348, because it conflicts withruffformatter - Breaking: Removes
WPS351, because it is covered byrufflinter - Breaking: Removes
WPS352, because it is covered byruffformatter - Breaking: Removes
WPS355, because it is covered byruffformatter - Breaking: Removes
WPS360, because it is covered byruffformatter - Breaking: Removes
WPS361, because it is covered byruffformatter - Breaking: Removes
WPS415, because is covered byrufflinter - Breaking: Removes
WPS417, because is covered byrufflinter - Breaking: Removes
WPS419, because is covered byrufflinter - Breaking: Removes
WPS423, because is covered byrufflinter - Breaking: Removes
WPS424, because is covered byrufflinter - Breaking: Removes
WPS425, because is covered byrufflinter - Breaking: Removes
WPS428, because is covered byrufflinter - Breaking: Removes
WPS433, because is covered bypylintlinter - Breaking: Removes
WPS434, because is covered bypylintlinter - Breaking: Removes
WPS436, because is covered bypylintlinter - Breaking: Removes
WPS437, because is covered byrufflinter - Breaking: Removes
WPS440, because
it was buggy and is covered bymypy, #3209 - Breaking: Removes
WPS442, because
it was buggy and is covered bymypy, #3209 - Breaking: Removes
WPS450, because is covered bypylintlinter - Breaking: Removes
WPS452, because is covered byrufflinter - Breaking: Removes
WPS454, because is covered byrufflinter - Breaking: Removes
WPS456, because is covered byrufflinter - Breaking: Removes
WPS465, because|is now heavily used by typing - Breaking: Removes
WPS467, because is covered bypylintlinter - Breaking: Removes
WPS502, because is covered byrufflinter - Breaking: Removes
WPS503, because is covered byrufflinter - Breaking: Removes
WPS507, because is covered bypylintlinter - Breaking: Removes
WPS508, because is covered byrufflinter - Breaking: Removes
WPS510, because is covered bypylintlinter - Breaking: Removes
WPS514, because is covered bypylintlinter - Breaking: Removes
WPS528, because is covered bypylintlinter - Breaking: Removes
WPS525, because is covered byrufflinter - Breaking: Removes
WPS526, because is covered byrufflinter - Breaking: Removes
WPS521, because is covered byrufflinter - Breaking: Removes
WPS609, because is covered bypylintlinter - Breaking: Removes
--i-control-codesetting,
if you want to disable some violations, just use# noqaor--ignore
with code that you want to exclude, there's no need
to create one more way of disabling some specific violations
Features
- Adds official
python3.13support - Allows any compares in
assertstatements forWPS520, #3112 - Allows walrus operator (
:=) in comprehesions, #3121 - Allows
passincasebodies, #2642 - Allows subclassing builtins in
WPS600, when creating anEnum, #2506 - Allows using variables after blocks for
WPS441inassertstatements, #2543 - Does not count
self,cls, andmcsas arguments
forWPS211complexity check anymore, #2394 - Allows underscores (
_) with exactly 3 digits after it inWPS303, #3120 - Allows class / instance attribute shadowing
in@dataclasses forWPS601, #1926 - Allows any number of instance attributes on
@dataclasses inWPS230, #2448 - Allows any number of function parameters
in@overloaddefinitions forWPS211, #1957 - Allows using multiline strings when placed on separate lines, #3056
- Allows using
hasattrbuiltin function, #2228 - Disallows using
is notandnot inas negated conditions inWPS504, #2617 - Allows all branches in
if/elif/elseto be negated inWPS504, #2617 - Adds a new rule to forbid
lambdaassigns to special attributes, #1733 - Adds a new rule to check problematic function params, #1343
- Adds a new rule to detect duplicate conditions in
ifs andelifs, #2241 - Adds a new rule to detect duplicate
casepattens inmatch, #3206 - Adds a new rule to find too many
matchsubjects, #3201 - Adds a new rule to detect too many
casestatements, #3202 - Adds a new rule to find too complex
exceptwith too many exceptions - Adds a new rule to find too many
PEP695type params - Adds a new rule to find useless ternary expressions, #1706
- Adds a new rule to forbid
raise SystemExit, usesys.exitinstead, #1786 - Adds a new rule to forbid extra syntax in
match ...subjects, #3217 - Adds new
--allowed-module-metadataand--forbidden-module-metadata
configuration options forWPS410, #3060 - Now
--allowed-domain-namesalso affectWPS11
to allow custom short variable names, #2554 - Adds support to run
wemake-python-styleguideas apre-commithook, #2588 - GitHub Action can now use
cwd:parameter to specify
where your configuration file is, #2474 - GitHub Action can now use
fail_workflow:parameter to not fail
the workflow even if the check did find any issues - GitHub Action can now use
filter_mode:parameter to specify
how ReviewDog will filter found violations,
see https://github.com/reviewdog/reviewdog#filter-mode #2239
Bugfixes
- Fixes
WPS217to allow simple calls infstrings, #3150 - Fixes
WPS217not to raise on emptyfstrings,
becauseruff checkhandles that now for us - Fixes
OverusedStringViolationnot to include'...'string - Removes
astorpackage in favour ofast.unparse - Fixes
WPS210to not count nested local variables in nested scopes #3108 - Fixes
IterableUnpackingViolationwith generic types andTypeVarTuple - Fixes
WPS469detecting incorrect names of raised exceptions, #3109 - Fixes unnormalized paths in formatter output
- Fixes
WPS221to ignore PEP695'sTypeAliasfrom line complexity checks - Fixes
WPS474to only count import collisions in the same context, #2962 - Fixes
WPS612to count defaults in function definitions, #2478 - Fixes several bugs in
WPS322with multiline strings detection - Fixes several violations not been detected in
case:statements - Fixes
WPS314not detectingmatchstatements - Fixes
match+casedoes not increase cognitive complexity
Misc
- Integration with
ondividoc for legacy codebases - Fixes a documentation error for the Formatter (Showing statistic) section
- Source code is now formatted with
ruff - Removes deprecated
astnodes from code:
ast.Num,ast.Bytes,ast.Str,ast.NamedConstant, etc