Metadata-Version: 2.1
Name: lg-cpplint
Version: 0.1.1
Summary: Automated checker to ensure C++ files follow Google's style guide
Home-page: https://github.com/lgulich/cpplint
Maintainer: cpplint Developers
Maintainer-email: lgulich@ethz.ch
License: BSD-3-Clause
Download-URL: https://github.com/lgulich/cpplint
Description: cpplint - static code checker for C++
        =====================================
        
        .. image:: https://travis-ci.org/cpplint/cpplint.svg?branch=master
            :target: https://travis-ci.org/cpplint/cpplint
        
        .. image:: https://img.shields.io/pypi/v/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/pyversions/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/status/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/l/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/dd/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/dw/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        .. image:: https://img.shields.io/pypi/dm/cpplint.svg
            :target: https://pypi.python.org/pypi/cpplint
        
        Cpplint is a command-line tool to check C/C++ files for style issues following `Google's C++ style guide <http://google.github.io/styleguide/cppguide.html>`_.
        Cpplint is developed and maintained by Google Inc. at `google/styleguide <https://github.com/google/styleguide>`_, also see the `wikipedia entry <http://en.wikipedia.org/wiki/Cpplint>`_
        
        While Google maintains cpplint, Google is not (very) responsive to issues and pull requests, this fork aims to be (somewhat) more open to add fixes to cpplint to enable fixes, when those fixes make cpplint usable in wider contexts.
        
        
        Installation
        ============
        
        
        To install cpplint from PyPI, run:
        
        .. code-block:: bash
        
            $ pip install lg-cpplint
        
        Then run it with:
        
        .. code-block:: bash
        
            $ lg-cpplint [OPTIONS] files
        
        For full usage instructions, run:
        
        .. code-block:: bash
        
            $ lg-cpplint --help
        
        Changes
        -------
        
        The modifications in this fork are minor fixes and cosmetic changes:
        
        * more default extensions
        * python 3 compatibility
        * customizable file extensions with the --extensions argument
        * continuous integration on travis
        * support for recursive file discovery via the --recursive argument
        * support for excluding files via --exclude
        * JUnit XML output format
        * Overriding repository root auto-detection via --repository
        * Support ``#pragma once`` as an alternative to header include guards
        
        
        Acknowledgements
        ----------------
        
        Thanks to Google Inc. for open-sourcing their in-house tool.
        Thanks to maintainers of the fork
        
        * `tkruse <https://github.com/tkruse>`_  
        * `mattyclarkson <https://github.com/mattyclarkson>`_
        * `theandrewdavis <https://github.com/theandrewdavis>`_
        
Keywords: lint,python,c++
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: C++
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: License :: Freely Distributable
Provides-Extra: dev
Provides-Extra: test
