Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

C++: cpplint

LCD 47 edited this page Oct 6, 2015 · 10 revisions

Maintainer: LCD 47 [email protected]

For details about cpplint see the project's page.

Checker options

g:syntastic_cpp_cpplint_thres (integer; default: 5)
error threshold: policy violations with a severity above this value are highlighted as errors, the others are warnings
g:syntastic_cpp_cpplint_args (string; default: `--verbose=3`)
command line options to pass to cpplint

Note

By default syntastic expects the cpplint script to be named cpplint.py. However, if your cpplint was installed with pip, the script's name is cpplint, and you need to set g:syntastic_cpp_cpplint_exec accordingly:

let g:syntastic_cpp_cpplint_exec = 'cpplint'
Clone this wiki locally