Style - axkoro/graph-impute GitHub Wiki
- Install clang-format (should already ship with clang or MinGW)
- To check whether you have it installed:
where clang-format
(in your shell)
- Setup clang-format as the default formatter in your editor
- In VSCode:
- Install the clang-format extension
- Setup clang-format as default formatter
- add
"editor.defaultFormatter": "xaver.clang-format"
to your settings.json
- Activate „Format on Save“
- add
"editor.formatOnSave": true
to your settings.json
- Enjoy
- Variables & functions:
snake_case
- Classes:
PascalCase
- Constants:
UPPER_SNAKE_CASE
⚠️ **GitHub.com Fallback** ⚠️