| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This provides pre-commit hooks for clang-format, cpplint, and cppcheck.
To use these hooks, simply place the following in you .pre-commit-config.yaml (more details below):
repos:
- repo: https://github.com/bmorcos/pre-commit-hooks-cpp
rev: master
hooks:
- id: clang-format
- id: cpplint
- id: cppcheckThis requires clang-format to be installed, e.g. sudo apt install clang-format. The default setup uses the Google style guide and will format all C/C++ files and headers found in the repo, however other arguments and particular files can specified.
- repo: https://github.com/bmorcos/pre-commit-hooks-cpp
rev: master
hooks:
- id: clang-format
# args: [--option1, -option2=abc]
# files: my_file.cpp|my_other_file.cpp
This requires cpplint to be installed, e.g. pip install cpplint. The default setup uses the --verbose=3 flag and will check all C/C++ files and headers found in the repo, however other arguments and particular files can specified.
- repo: https://github.com/bmorcos/pre-commit-hooks-cpp
rev: master
hooks:
- id: cpplint
# args: [--option1, -option2=abc]
# files: my_file.cpp|my_other_file.cpp
This requires cppcheck to be installed, e.g. sudo apt install cppcheck. The default setup enables warnings to be displayed and will check all C/C++ files and headers found in the repo, however other arguments and particular files can specified.
- repo: https://github.com/bmorcos/pre-commit-hooks-cpp
rev: master
hooks:
- id: cppcheck
# args: [--option1, -option2=abc]
# files: my_file.cpp|my_other_file.cpp
| Back | FazBrowse Home | New Git URL |