-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add two .clang-format files and reformat all files (#40)
* test_flight_sql.py: Move long inline comment to its own line * Disable clang-format for duckdb_sql_info.cpp * Add .clang-format files * Run clang-format on all files This commit doesn't include any manual change. It can be fully reproduced by: find src -type f -name "*.h" -or -name "*.cpp" | xargs -n1 clang-format -i * Use a single clang-format file Might enable SortIncludes later. Not enabling it now to avoid any breakage. * Run clang-format on all files (second time) This commit doesn't include any manual change. It can be fully reproduced by: find src -type f -name "*.h" -or -name "*.cpp" | xargs -n1 clang-format -i
- Loading branch information
Showing
18 changed files
with
1,765 additions
and
1,769 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,6 @@ | ||
--- | ||
BasedOnStyle: Google | ||
ColumnLimit: 90 | ||
IncludeBlocks: Preserve | ||
ReflowComments: false | ||
SortIncludes: false |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.