Open
Description
In GitLab by @graingert on Jan 18, 2017, 04:39
I currently maintain https://pypi.python.org/pypi/flake8-commas and I'm trying to port it to flake8 >=3.
I currently only need the simple tokenize token stream to work.
However there's no documentation on what I should do to change my plugin to work with flake8 3.
http://flake8.pycqa.org/en/latest/plugin-development/index.html#getting-started
and http://flake8.pycqa.org/en/latest/plugin-development/registering-plugins.html
mention adding an entry point 'X = flake8_example:ExamplePlugin',
but not what ExamplePlugin should look like.
Do I use a run method? __init__
? etc.