mirror of
https://github.com/AntiMicroX/antimicrox.git
synced 2025-12-23 23:29:25 -05:00
* Create basic config for clang-format * Format source files using clang-format * Add Github Action checking proper code formatting after every Pull request
14 lines
297 B
YAML
14 lines
297 B
YAML
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
|
|
BreakBeforeBraces: Custom
|
|
ColumnLimit: 125
|
|
IndentPPDirectives: BeforeHash
|
|
BraceWrapping:
|
|
AfterEnum: true
|
|
AfterStruct: true
|
|
AfterClass: true
|
|
AfterControlStatement: true
|
|
AfterFunction: true
|
|
AfterUnion: true
|
|
BreakConstructorInitializersBeforeComma: true |