Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 806 Bytes

2.6.rst

File metadata and controls

27 lines (16 loc) · 806 Bytes

What's New in Pylint 2.6

Release:2.6
Date: TBA

Summary -- Release highlights

New checkers

  • Add super-with-arguments check for flagging instances of Python 2 style super calls.

Other Changes

  • bad-continuation and bad-whitespace have been removed. black or another formatter can help you with this better than Pylint
  • The no-space-check option has been removed, it's no longer possible to consider empty line like a trailing-whitespace by using clever options.
  • mixed-indentation has been removed, it is no longer useful since TabError is included directly in python3
  • New option allow-redefined-builtins to configure variable names allowed to shadow builtins