Add documentation around plugins and formatters

This commit is contained in:
Ian Cordasco 2016-02-06 14:36:44 -06:00
parent 63b50bc1f4
commit fe1b628c0f
2 changed files with 129 additions and 0 deletions

View file

@ -0,0 +1,16 @@
===========================================
Developing a Formatting Plugin for Flake8
===========================================
Flake8 added the ability to develop custom formatting plugins in version
3.0.0. Let's write a plugin together:
.. code-block:: python
from flake8.formatting import base
class Example(base.BaseFormatter):
"""Flake8's example formatter."""
pass