Metadata-Version: 1.1
Name: bashlint
Version: 0.1.1
Summary: Bash linting tool
Home-page: https://github.com/skudriashev/bashlint
Author: Stanislav Kudriashev
Author-email: stas.kudriashev@gmail.com
License: MIT
Download-URL: https://github.com/skudriashev/bashlint/tarball/0.1.1
Description: ============================
        bashlint - Bash linting tool
        ============================
        
        Simple Bash linting tool written in Python.
        
        .. image:: https://travis-ci.org/skudriashev/bashlint.svg?branch=master
           :target: https://travis-ci.org/skudriashev/bashlint
        
        Installation
        ------------
        ``bashlint`` can be installed via the Python Package Index or from source.
        
        Using ``pip`` to install ``bashlint``::
        
            $ pip install bashlint
        
        You can download the source tarball and install ``bashlint`` 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;#
        
Keywords: bash
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 :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
