How to configure PyLint to check all things PEP8 checks?

后端 未结 1 1061
南方客
南方客 2020-12-14 07:00

Searching for an answer on PyLint\'s mailing list brings no interesting results.
PyLint is known to be very customizable so I guess this should be possible...

相关标签:
1条回答
  • 2020-12-14 07:17
    • E203 is not yet supported in pylint AFAIK
    • E225 is C0322 / C0323
    • E251 should be C0322/C0323, but I'm not sure that pylint does not special case parameters and allows lack of space there
    • E301, E303 are not supported AFAIK
    • E501 is C0301 and you can configure the length in your pylintrc
    • W291, W292 and W203 are not supported AFAIK.

    It would be nice if you could report these as desired features over here.

    0 讨论(0)
提交回复
热议问题