pycodestyle icon indicating copy to clipboard operation
pycodestyle copied to clipboard

🎛 A Svelte library for building dynamic, infinitely customizable node-based user interfaces and flowcharts

Results 211 pycodestyle issues
Sort by recently updated
recently updated
newest added

## Issue #373 Rule E203 checks for extraneous whitespace before a colon. Yet there is a corner case when the colon is used as a "slice" operator. [PEP8](https://www.python.org/dev/peps/pep-0008/#pet-peeves) says: >...

Currently, pycodestyle allows ``` { "key": 1, "longer-key": 2, } ``` (actually it emits a E241 "multiple spaces after ":", but that's suppressed by default) but disallows ``` { "key":...

Excludes ``` sorted(obj for obj in iterator if some_long_cond() and some_other_cond()) ``` from E127. It is true that this also lets through some "bad" indents e.g. ``` (1 if a...

BaseReport (used when quiet option is specified) does not include row and column numbers or other useful error info. Being able to access this info even when quiet mode is...

I've been on a Python performance optimization kick recently (see https://github.com/PyCQA/astroid/pull/497), and I'm a `pycodestyle` user, so I figured I would give it a look and see if its performance...

undecided
needs review

This implements the same as #431 #527 (requested in #399). This is about the best that can be done without importing the `ast` module, and therefore this PR is much...

Playing with AST checks can be very tedious because of the amount of "incorrect" Python code which raises E901 (or fail differently) when AST checks are enabled. An easy solution...

Some projects need to enforce hanging indents (rather than visual indents) in their codes. To facilitate this, added a check when some part is not in valid hanging indent format.

Several minor issues related to test suite inhibit a smooth development workflow on Windows. The commits are labelled appropriately with the changes. They are independent. Notice the '*' logic is...