Cleanup and move deps

This commit is contained in:
2025-05-26 22:41:27 +08:00
parent 55aa93eee2
commit 9e52c0147d
401 changed files with 40050 additions and 2344 deletions

19
third_party/spdlog/.clang-format vendored Normal file
View File

@@ -0,0 +1,19 @@
---
Language: Cpp
BasedOnStyle: Google
AccessModifierOffset: -4
Standard: c++17
IndentWidth: 4
TabWidth: 4
UseTab: Never
ColumnLimit: 100
AlignAfterOpenBracket: Align
BinPackParameters: false
AlignEscapedNewlines: Left
AlwaysBreakTemplateDeclarations: Yes
PackConstructorInitializers: Never
BreakConstructorInitializersBeforeComma: false
IndentPPDirectives: BeforeHash
SortIncludes: Never
...