mirror of
https://github.com/s00500/ESPUI.git
synced 2024-10-31 22:10:54 +00:00
1e5ee117c5
Include clang-format file for formatting code and format code
58 lines
1.4 KiB
YAML
Executable File
58 lines
1.4 KiB
YAML
Executable File
---
|
|
# Based on Webkit style
|
|
BasedOnStyle: Webkit
|
|
IndentWidth: 4
|
|
ColumnLimit: 120
|
|
---
|
|
Language: Cpp
|
|
Standard: Cpp11
|
|
# Pointers aligned to the left
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
AccessModifierOffset: -4
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AlwaysBreakTemplateDeclarations: true
|
|
BreakBeforeBraces: Custom
|
|
BraceWrapping:
|
|
AfterClass: true
|
|
AfterControlStatement: true
|
|
AfterEnum: true
|
|
AfterFunction: true
|
|
AfterNamespace: true
|
|
AfterStruct: true
|
|
AfterUnion: true
|
|
AfterExternBlock: true
|
|
BeforeCatch: true
|
|
BeforeElse: true
|
|
SplitEmptyFunction: false
|
|
SplitEmptyRecord: false
|
|
SplitEmptyNamespace: false
|
|
BreakConstructorInitializers: BeforeColon
|
|
CompactNamespaces: false
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
ConstructorInitializerIndentWidth: 4
|
|
Cpp11BracedListStyle: true
|
|
FixNamespaceComments: true
|
|
IncludeBlocks: Regroup
|
|
IncludeCategories:
|
|
# C++ standard headers (no .h)
|
|
- Regex: '<[[:alnum:]_-]+>'
|
|
Priority: 1
|
|
# Extenal libraries (with .h)
|
|
- Regex: '<[[:alnum:]_./-]+>'
|
|
Priority: 2
|
|
# Headers from same folder
|
|
- Regex: '"[[:alnum:]_.-]+"'
|
|
Priority: 3
|
|
# Headers from other folders
|
|
- Regex: '"[[:alnum:]_/.-]+"'
|
|
Priority: 4
|
|
IndentCaseLabels: false
|
|
NamespaceIndentation: All
|
|
SortIncludes: true
|
|
SortUsingDeclarations: true
|
|
SpaceAfterTemplateKeyword: true
|
|
SpacesInAngles: false
|
|
SpacesInParentheses: false
|
|
SpacesInSquareBrackets: false
|
|
UseTab: Never |