-
it might be a problem with my development setup - but my flake8 complains about almost everything. It might be usefull to provide a flake8 config like attached to make sure that the test is always the…
-
In GitLab by @graingert on Jan 18, 2017, 04:39
I currently maintain https://pypi.python.org/pypi/flake8-commas and I'm trying to port it to flake8 >=3.
I currently only need the simple tokenize to…
-
In GitLab by @sobolevn on Jul 20, 2019, 02:35
## Problem
I am writing [quite a complex plugin](https://github.com/wemake-services/wemake-python-styleguide) with lots of configuration options.
Mo…
-
Hi,
I've found that [flake8-length](https://github.com/orsinium-labs/flake8-length) written by @orsinium to be one of my favorite flake8 plugins. I searched the issue pool of ruff and didn't find …
jsh9 updated
9 months ago
-
### What's wrong
WPS316 does not support Parenthesized context manager.
WPS316 Found context manager with too many assignments
```
filename1, filename2 = '/tmp/f1.txt', '/tmp/f2.txt'
with (…
-
When using
```
- name: flake8 Lint
uses: TrueBrain/actions-flake8@v2
with:
plugins: flake8-simplify
error_classes: 'E,F'
warning_classes:'SIM…
-
We should move away from pycodestyle (used by [Flake8](https://pypi.org/project/flake8/)) which has some inherent design limitations such as not being able to qualify an analysis outside of the curren…
-
For example:
`pylsp.plugins.flake8.exclude` has a default value of `[]` which overrides the `flake8` default `.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.nox,.eggs,*.egg`.
`pylsp.plugins.pycodesty…
-
Hey there :wave:
Thanks for this great project!
I'm exploring the idea of migrating some projects from flake8 to ruff.
I'm currently having a hard time seeing exactly all the flake8 rules I rel…
-
### What's wrong
The following is not allowed by WPS356:
```python
from typing import Generic, Self, Tuple, TypeVar, TypeVarTuple
DType = TypeVar('DType')
Shape = TypeVarTuple('Shape')
…