flake8/example-plugin/src/flake8_example_plugin/off_by_default.py
2016-10-25 18:21:50 -05:00

17 lines
391 B
Python

"""Our first example plugin."""
class ExampleTwo(object):
"""Second Example Plugin."""
name = 'off-by-default-example-plugin'
version = '1.0.0'
off_by_default = True
def __init__(self, tree):
self.tree = tree
def run(self):
"""Do nothing."""
yield (1, 0, 'X200 The off-by-default plugin was enabled',
'OffByDefaultPlugin')