Metadata-Version: 1.1
Name: flake8-commas
Version: 0.3.0
Summary: Flake8 lint for trailing commas.
Home-page: https://github.com/flake8-commas/flake8-commas/
Author: Thomas Grainger
Author-email: flake8-commas@graingert.co.uk
License: UNKNOWN
Description: Flake8 Extension to enforce trailing commas.
        ============================================
        
        Usage
        -----
        
        If you are using flake8 it's as easy as:
        
        .. code:: shell
        
            pip install flake8-commas
        
        Now you can avoid those annoying merge conflicts on dictionary and list diffs.
        
        Errors
        ------
        
        Different versions of python require commas in different places. Ignore the
        errors for languages you don't use in your flake8 config:
        
        +------+---------------------------------------+
        | Code | message                               |
        +======+=======================================+
        | C812 | missing trailing comma                |
        +------+---------------------------------------+
        | C813 | missing trailing comma in Python 3    |
        +------+---------------------------------------+
        | C814 | missing trailing comma in Python 2    |
        +------+---------------------------------------+
        | C815 | missing trailing comma in Python 3.5+ |
        +------+---------------------------------------+
        
        
        0.3.0 (2017-01-16)
        ------------------
        
        - If there is a comment after the last item, do not report an error.
          (`Issue #18 <https://github.com/flake8-commas/flake8-commas/issue/18>`_)
        - If there is an empty, tuple, list, dict, or function, do not report an error.
          (`Issue #17 <https://github.com/flake8-commas/flake8-commas/issue/17>`_)
        - Support PEP 3132 Python 3.5+ extended unpacking.
          (`Issue #26 <https://github.com/flake8-commas/flake8-commas/issue/26>`_)
        - `*args` should not require a trailing comma.
          (`Issue #27 <https://github.com/flake8-commas/flake8-commas/issue/27>`_)
        
        
        0.2.0 (2017-01-13)
        ------------------
        
        - First version of flake8-commas with changelog
        - Fix HTML readme render on PyPI.
        - Support various parenth_form edge cases.
        - Merge from flake8-trailing-commas
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
