forked from biologist79/ESPuino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-format
41 lines (41 loc) · 906 Bytes
/
.clang-format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
BasedOnStyle: WebKit
AlignArrayOfStructures: Right
AlignConsecutiveBitFields:
Enabled: true
AlignConsecutiveMacros:
Enabled: true
AllowShortEnumsOnASingleLine: false
AllowShortFunctionsOnASingleLine: InlineOnly
BreakBeforeBraces: Attach
Cpp11BracedListStyle: true
FixNamespaceComments: true
IncludeBlocks: Regroup
IncludeCategories:
- Regex: Arduino.h
Priority: -1
SortPriority: -2
CaseSensitive: true
- Regex: settings.h
Priority: -1
SortPriority: -1
CaseSensitive: true
- Regex: ^"
Priority: 1
SortPriority: 0
CaseSensitive: false
- Regex: .*
Priority: 4
SortPriority: 0
CaseSensitive: false
IncludeIsMainRegex: (_test)?$
IndentCaseLabels: true
IndentPPDirectives: BeforeHash
InsertBraces: true
InsertNewlineAtEOF: true
NamespaceIndentation: None
PointerAlignment: Right
SpaceAfterCStyleCast: true
Standard: Auto
TabWidth: 4
UseTab: Always