Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes C++ Reference Code Standard from Google C++ Style Guide to C+… #288

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions content/code-style/code-style-c-plus-plus.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

## Reference Code Standard

Follow Google's guidelines which includes coding conventions and naming style:
Follow the C++ Core Guidelines which includes coding conventions, and naming and layout rules:

- [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html)
- [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)

## Exceptions to the Standard

Expand All @@ -24,10 +24,11 @@

| Tools/Procedures | Type | Notes |
| --------------------------------------------------------------------- | ----------- | -------------------------------------------------------------------------------------------------------------- |
| [cpplint](https://github.com/google/styleguide/tree/gh-pages/cpplint) | Open Source | Validates Google code style. It can be modified to account for any exceptions we add to the original standard. |
| [Visual Studio 2022](https://visualstudio.microsoft.com/downloads) | Commercial | IntelliSense Code Linter for C++ evaluates as you type |
| [ReSharper C++](https://www.jetbrains.com/resharper-cpp/) | Commercial | IntelliSense Code Linter for C++ evaluates as you type |
| [clang-format](https://clang.llvm.org/docs/ClangFormat.html) | Free | Formats source code according to style guide. |
| [clangd](https://clangd.llvm.org/) | Free | Compiler and clang-tidy warnings as you type |

Check warning on line 29 in content/code-style/code-style-c-plus-plus.md

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (clangd)
| [clang-format](https://clang.llvm.org/docs/ClangFormat.html) | Free | Formats source code according to layout rules |
| [clang-tidy](https://clang.llvm.org/extra/clang-tidy/) | Free | Validates coding conventions and naming rules. It can be modified to account for any exceptions we add to the original standard |

## Recommended Reading

Expand Down