2024-08-07 14:54:51 -06:00
..
2024-08-07 14:54:51 -06:00
2024-08-07 14:54:51 -06:00
2024-08-07 14:54:51 -06:00
2024-08-07 14:54:51 -06:00

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> </head>

cpplint - static code checker for C++

https://travis-ci.org/cpplint/cpplint.svg?branch=master

Cpplint is a command-line tool to check C/C++ files for style issues following Google's C++ style guide. Cpplint is developed and maintained by Google Inc. at google/styleguide, also see see the wikipedia entry

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:

System Message: WARNING/2 (<stdin>, line 40)

Cannot analyze code. Pygments package not found.

.. code-block:: bash

    $ pip install cpplint

Then run it with:

System Message: WARNING/2 (<stdin>, line 46)

Cannot analyze code. Pygments package not found.

.. code-block:: bash

    $ cpplint [OPTIONS] files

For full usage instructions, run:

System Message: WARNING/2 (<stdin>, line 52)

Cannot analyze code. Pygments package not found.

.. code-block:: bash

    $ 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

</html>