Metadata-Version: 2.0
Name: whitespacelint
Version: 1.0.0
Summary: Linting tool for whitespace
Home-page: https://github.com/bendikro/whitespacelint
Author: Bendik
Author-email: bro.dev@gmail.com
License: MIT
Keywords: lint
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules

==============================================
whitespacelint - Linting tool for whitespace
==============================================

Simple Linting tool for whitespace written in Python based on [bashlint](https://github.com/skudriashev/bashlint)


Installation
------------
``whitespacelint`` can be installed via the Python Package Index or from source.

Using ``pip`` to install ``whitespacelint``::

    $ pip install whitespacelint

You can download the source tarball and install ``whitespacelint`` as follows::

    $ python setup.py install

or in development mode::

    $ python setup.py develop


Rules list
----------
**W201 Trailing whitespace**: Trailing whitespaces are superfluous::

    Okay: echo Test#
    W201: echo Test #

**W202 Blank line contains whitespace**: Trailing whitespaces on blank lines
are superfluous::

    Okay: #
    W202:  #

**W203 Trailing semicolon**: Trailing semicolons are superfluous::

    Okay: echo Test#
    W203: echo Test;#


