Metadata-Version: 2.0
Name: ebb-lint
Version: 0.3.6
Summary: lint for ensuring quality software
Home-page: https://github.com/flowroute/ebb-lint
Author: Flowroute Inc.
Author-email: development@flowroute.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: flake8
Requires-Dist: six
Requires-Dist: venusian
Requires-Dist: enum34
Provides-Extra: all
Requires-Dist: pytest; extra == 'all'
Requires-Dist: pytest-cov; extra == 'all'
Requires-Dist: coverage; extra == 'all'
Provides-Extra: dev
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'

.. image:: https://img.shields.io/travis/flowroute/ebb-lint/master.svg?style=flat-square

.. image:: https://img.shields.io/coveralls/flowroute/ebb-lint/master.svg?style=flat-square

.. image:: https://img.shields.io/pypi/v/ebb-lint.svg?style=flat-square

.. image:: https://img.shields.io/pypi/l/ebb-lint.svg?style=flat-square


==========
 ebb-lint
==========

It's a `flake8`_ plugin!
It lints for style problems!
All you have to do to activate it is::

  $ pip install ebb-lint


Configuration
=============

Configuration does nothing but cause bugs or laxness,
so ``ebb-lint`` has none.

If,
however,
one is writing a one-off script and wishes to use ``print`` against ``ebb-lint``\ 's wishes,
a comment can be added to the top of the file to disable that warning::

  # I sincerely swear that this is one-off code.

This comment must be above any statements in the code
(including docstrings),
on a line by itself.


.. _flake8: https://flake8.readthedocs.org/en/stable/


