mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
* .clang-format (UseTab): Set to "Always", to match the (indent-tabs-mode . t) in .dir-locals.el. (Bug#59027)
28 lines
657 B
YAML
28 lines
657 B
YAML
Language: Cpp
|
|
BasedOnStyle: GNU
|
|
AlignEscapedNewlinesLeft: true
|
|
AlwaysBreakAfterReturnType: TopLevelDefinitions
|
|
BreakBeforeBinaryOperators: All
|
|
BreakBeforeBraces: GNU
|
|
ColumnLimit: 70
|
|
ContinuationIndentWidth: 2
|
|
ForEachMacros: [FOR_EACH_TAIL, FOR_EACH_TAIL_SAFE, ITREE_FOREACH]
|
|
IncludeCategories:
|
|
- Regex: '^<config\.h>$'
|
|
Priority: -1
|
|
- Regex: '^<'
|
|
Priority: 1
|
|
- Regex: '^"lisp\.h"$'
|
|
Priority: 2
|
|
- Regex: '.*'
|
|
Priority: 3
|
|
KeepEmptyLinesAtTheStartOfBlocks: false
|
|
MaxEmptyLinesToKeep: 1
|
|
PenaltyBreakBeforeFirstCallParameter: 2000
|
|
SpaceAfterCStyleCast: true
|
|
SpaceBeforeParens: Always
|
|
UseTab: Always
|
|
|
|
# Local Variables:
|
|
# mode: yaml
|
|
# End:
|