Top "Cpplint" questions

cpplint is an open source lint-like tool developed by Google, designed to ensure that C++ code conforms to Google's coding style guides.

Google's style guide about input/output parameters as pointers

The Google C++ Style Guide draws a clear distinction (strictly followed by cpplint.py) between input parameters(→ const ref, value) …

c++ parameters reference google-style-guide cpplint
Disable specific warnings from cpplint

When running cpplint, I run into some warnings that I'd like to completely disable. Specifically the copyright message & whitespaces: …

c++ linter cpplint
Running CPPlint on whole project

I want to run cpplint.py on my whole project not for single file to get a report for all …

google-style-guide cpplint