wemake-python-styleguide
wemake-python-styleguide copied to clipboard
The strictest and most opinionated python linter ever!
Refs https://github.com/wemake-services/wemake-python-styleguide/issues/2910 We need to check that any nodes that has `wps_op_eval` set to a literal value is treaded the same way as literal values.
They are deprecated and scheduled for removal in 3.14 Since we don't support older Python versions, it is no longer required.
Good day. I've discovered a way of integrating WPS to PyCharm. _Project mainainers might find this useful and would like to put it on display here and on the webpage._...
Bumps [autopep8](https://github.com/hhatto/autopep8) from 2.1.0 to 2.1.1. Release notes Sourced from autopep8's releases. v2.1.1 What's Changed force reload pycodestyle module by @hhatto in hhatto/autopep8#740 include test/acid.py in sdist package by @hhatto...
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.102.4 to 6.102.5. Commits 259813a Bump hypothesis-python version to 6.102.5 and update changelog f780fb3 Merge pull request #3996 from HypothesisWorks/create-pull-request/patch 99ba90f fix pyodide tests 9d64833 fix pyodide...
Bumps [setuptools](https://github.com/pypa/setuptools) from 69.5.1 to 70.0.0. Changelog Sourced from setuptools's changelog. v70.0.0 Features Emit a warning when [tools.setuptools] is present in pyproject.toml and will be ignored. -- by :user:SnoopJ (#4150)...
### What's wrong Errors for single-line docstrings of decorated functions are not reported on the line of the docstring but rather on the line after the docstring. ``` def some_deco():...
### What's wrong This rule is falsely flagging a second function level import of the same name as a collision. Appears to have been introduced in version 0.19.0, does not...
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.111.1 to 6.111.2. Commits e339c5f Bump hypothesis-python version to 6.111.2 and update changelog 3e8e8b3 Merge pull request #4090 from Zac-HD/test-cleanups ae1a2d0 Clean up minimal() helper e8cea04 ignore...
### What's wrong Unpacking raises a WPS434 exactly when the first variable is the same as the one unpacking from ``` a, b = a # raises 434 c, d...