mirror of https://github.com/PCSX2/pcsx2.git
clang-format: tune format after discussion
Use custom brace setup. So union/struct/class all behave the same. Fix typo on 3rdparty
This commit is contained in:
parent
16f12bcfa5
commit
18941f1b80
|
@ -19,8 +19,20 @@ AlwaysBreakBeforeMultilineStrings: false
|
||||||
AlwaysBreakTemplateDeclarations: true
|
AlwaysBreakTemplateDeclarations: true
|
||||||
BinPackArguments: true
|
BinPackArguments: true
|
||||||
BinPackParameters: true
|
BinPackParameters: true
|
||||||
|
BraceWrapping:
|
||||||
|
AfterClass: true
|
||||||
|
AfterControlStatement: false
|
||||||
|
AfterEnum: false
|
||||||
|
AfterFunction: true
|
||||||
|
AfterNamespace: true
|
||||||
|
AfterObjCDeclaration: false
|
||||||
|
AfterStruct: true
|
||||||
|
AfterUnion: true
|
||||||
|
BeforeCatch: false
|
||||||
|
BeforeElse: false
|
||||||
|
IndentBraces: false
|
||||||
BreakBeforeBinaryOperators: None
|
BreakBeforeBinaryOperators: None
|
||||||
BreakBeforeBraces: Linux
|
BreakBeforeBraces: Custom
|
||||||
BreakBeforeTernaryOperators: false
|
BreakBeforeTernaryOperators: false
|
||||||
BreakConstructorInitializersBeforeComma: true
|
BreakConstructorInitializersBeforeComma: true
|
||||||
ColumnLimit: 0
|
ColumnLimit: 0
|
||||||
|
|
|
@ -45,7 +45,7 @@ files=`git diff $diff_range --name-only --diff-filter=ACMRT | \
|
||||||
grep -v "${1}plugins/zzogl-pg/" | \
|
grep -v "${1}plugins/zzogl-pg/" | \
|
||||||
\
|
\
|
||||||
grep -v "/resource.h" | \
|
grep -v "/resource.h" | \
|
||||||
grep -v "3rdpary/" | \
|
grep -v "3rdparty/" | \
|
||||||
grep -v "bin/" | \
|
grep -v "bin/" | \
|
||||||
grep -v "cmake/" | \
|
grep -v "cmake/" | \
|
||||||
grep -v "tools/" | \
|
grep -v "tools/" | \
|
||||||
|
|
Loading…
Reference in New Issue