Skip to content

Releases: sorenlind/flake8-plus

v0.5.1

28 Nov 13:30
Compare
Choose a tag to compare

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

24 Nov 13:19
Compare
Choose a tag to compare

84e3d36 - Add compatibility with Flake8 6.0.0

v0.4.1

02 Nov 06:46
Compare
Choose a tag to compare

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

31 Oct 22:25
Compare
Choose a tag to compare

112d65c - Add PLU003: blank lines before except

ecddaf4 - Simplify PLU002Visitor

v0.3.0

31 Oct 21:27
Compare
Choose a tag to compare

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

26 Oct 23:47
Compare
Choose a tag to compare

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

v0.1.1

26 Oct 23:14
Compare
Choose a tag to compare

a7d6c43 - Add initial version