Last active
February 19, 2026 19:36
-
-
Save rubenhortas/cb482ad1e9327bbb0431cf2386e87123 to your computer and use it in GitHub Desktop.
Standard C style rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # Apply to project: Place in the project root directory | |
| # Apply globally: Place in ~/ | |
| Language: Cpp | |
| BasedOnStyle: Google | |
| ColumnLimit: 120 | |
| IndentWidth: 4 | |
| TabWidth: 4 | |
| PointerAlignment: Right | |
| AllowShortBlocksOnASingleLine: Never | |
| AllowShortIfStatementsOnASingleLine: Never | |
| AllowShortFunctionsOnASingleLine: None | |
| SpaceBeforeParens: Never | |
| Standard: Cpp11 | |
| SortIncludes: true | |
| SpaceAfterCStyleCast: false | |
| SpacesInParentheses: false | |
| --- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment