add editorconfig and clang-format files

This commit is contained in:
2026-03-07 16:37:55 -06:00
parent 7a0e2de855
commit 143ec79d37
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
"BasedOnStyle": "LLVM",
"UseTab": "Always",
"IndentWidth": 8,
"TabWidth": 8,
"LineEnding": "LF",
"RemoveBracesLLVM": true,
"AlwaysBreakAfterReturnType": "AllDefinitions",
"BreakBeforeBraces": "Custom",
"BraceWrapping": {
"AfterFunction": true,
"AfterClass": false,
"AfterControlStatement": false,
"AfterNamespace": false,
"AfterStruct": false,
"BeforeElse": false,
"BeforeCatch": false
}
}