PyCQA / flake8

flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.

Home Page:https://flake8.pycqa.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Q: List of available/active rules

mheden opened this issue · comments

describe the request

Is it possible to generate a list of all available rules (including plugins)? I couldn't see any suitable commandline switches nor the API but if its not there, I think it would be a useful feature to add.

Mobile search is failing me but plugins do not specify all of the rules they implement. They provide an entry point and we provide what they return as part of execution. This is impossible unless we break every existing plugin to require them to provide this information

I do believe there are duplicates so I'm closing this but I don't have a reference because mobile search isn't giving me everything

flake8 --help is the closest

@sigmavirus24 thanks, I didn't found any duplicate tickets when I searched but I can assume there probably are some.

Alright, an API change doesn't feel good so I get it. Thanks for a great tool non the less!