-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat C++ and add clang-format CI (#206)
- Loading branch information
Showing
183 changed files
with
4,792 additions
and
5,451 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# See https://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
BasedOnStyle: LLVM | ||
IndentWidth: 4 | ||
--- | ||
Language: Cpp | ||
AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: AlwaysBreak | ||
AllowAllArgumentsOnNextLine: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowAllConstructorInitializersOnNextLine: false | ||
AllowShortIfStatementsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: TopLevel | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
BreakBeforeBraces: Allman | ||
ColumnLimit: 120 | ||
DerivePointerAlignment: false | ||
FixNamespaceComments: false | ||
IndentCaseLabels: true | ||
IndentPPDirectives: AfterHash | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
NamespaceIndentation: All | ||
PackConstructorInitializers: CurrentLine | ||
PointerAlignment: Left | ||
SpaceAfterTemplateKeyword: false | ||
TabWidth: 4 | ||
UseTab: Never |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Clang Format | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: ["main"] | ||
|
||
jobs: | ||
clang-format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Clang Format | ||
run: | | ||
# This LLVM script will add the relevant LLVM PPA: https://apt.llvm.org/ | ||
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh | ||
chmod +x /tmp/llvm.sh | ||
sudo /tmp/llvm.sh 18 | ||
sudo apt-get install -y clang-format-18 | ||
rm /tmp/llvm.sh | ||
clang-format-18 --version | ||
- name: Run Clang Format | ||
run: | | ||
find . -name "*.h" -o -name "*.cpp" | xargs clang-format-18 --style=file --fallback-style=none --Werror --dry-run |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"icegrid", | ||
"zeroc" | ||
], | ||
"dictionaries": [ | ||
"csharp", | ||
"softwareTerms", | ||
"en_US" | ||
], | ||
"enableFiletypes": [ | ||
"ice" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"recommendations": [ | ||
"ZeroCInc.slice" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"C_Cpp.autoAddFileAssociations": false, | ||
"files.associations": { | ||
"Make.*": "makefile" | ||
}, | ||
"C_Cpp.default.cppStandard": "c++17", | ||
"gradle.nestedProjects": true | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.