mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-04 20:26:53 +00:00
Add an example plugin project to source tree
This commit is contained in:
parent
a9e15afbf5
commit
5f3577fca8
4 changed files with 73 additions and 0 deletions
9
example-plugin/src/flake8_example_plugin/__init__.py
Normal file
9
example-plugin/src/flake8_example_plugin/__init__.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
"""Module for an example Flake8 plugin."""
|
||||
|
||||
from .on_by_default import ExampleOne
|
||||
from .off_by_default import ExampleTwo
|
||||
|
||||
__all__ = (
|
||||
'ExampleOne',
|
||||
'ExampleTwo',
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue