Releases: sorenlind/flake8-plus
Releases · sorenlind/flake8-plus
v0.5.1
9e77ce2 - Fix bug causing false positives for PLU002
When an inner async function was immediately followed by a return
,
false positives could occur because other linters and formatters may
require a specific number of blanks after classes and functions. One
example is Black.
v0.5.0
84e3d36 - Add compatibility with Flake8 6.0.0
v0.4.1
71ac99b - Fix bug causing false positives for PLU002
When an inner class or function was immediately followed by a return
,
false positives could occur because other linters and formatters may
require a specific number of blanks after classes and functions. One
example is Black.
v0.4.0
112d65c - Add PLU003: blank lines before except
ecddaf4 - Simplify PLU002Visitor
v0.3.0
ee687e9 - Add PLU002: blank lines before return statement
7db6361 - Prepare code for more rules, fix bug
- Refactoring to make it easier to add more rules
- Fix bug causing problems with multiple statements on one line
v0.2.0
687ea8c - Add license
7ca22c4 - Add badges
286d374 - Fix description content type
58c711f - Misc fixes
- Update README
- Rename PLU100 -> PLU001
- Fix bug causing two blocks of blank lines with a comment between them
to count as a single block
- Rename test case files
- Properly exclude test case files from linting
- Remove unused config files
- And more