mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-31 03:06:53 +00:00
16 lines
404 B
ReStructuredText
16 lines
404 B
ReStructuredText
===========================================
|
|
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
|