mirror of
https://github.com/upx/upx.git
synced 2024-11-23 04:39:59 +00:00
28 lines
731 B
YAML
28 lines
731 B
YAML
# vim:set ft=yaml ts=2 sw=2 et:
|
|
# Copyright (C) Markus Franz Xaver Johannes Oberhumer
|
|
# for clang-format-15.0.6 from https://github.com/upx/upx-stubtools/releases
|
|
#
|
|
# "Gofmt's style is nobody's favourite, but gofmt is everybody's favourite." --Rob Pike
|
|
---
|
|
BasedOnStyle: LLVM
|
|
ColumnLimit: 100
|
|
IndentWidth: 4
|
|
---
|
|
# settings for C and C++
|
|
Language: Cpp
|
|
AccessModifierOffset: -4
|
|
AlignConsecutiveMacros: AcrossComments
|
|
AlwaysBreakTemplateDeclarations: true
|
|
AttributeMacros:
|
|
- DELETED_FUNCTION
|
|
- XSPAN_DELETED_FUNCTION
|
|
- may_throw
|
|
EmptyLineBeforeAccessModifier: Leave
|
|
# IndentPPDirectives: AfterHash # TODO later
|
|
SortIncludes: false
|
|
SpaceAfterCStyleCast: true
|
|
Standard: Cpp03
|
|
StatementMacros:
|
|
- CLANG_FORMAT_DUMMY_STATEMENT
|
|
...
|