forked from libsdl-org/SDL_ttf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added .editorconfig and .clang-format for SDL_ttf
- Loading branch information
Showing
2 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
AlignConsecutiveMacros: Consecutive | ||
AlignConsecutiveAssignments: None | ||
AlignConsecutiveBitFields: None | ||
AlignConsecutiveDeclarations: None | ||
AlignEscapedNewlines: Right | ||
AlignOperands: Align | ||
AlignTrailingComments: true | ||
|
||
AllowAllArgumentsOnNextLine: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortEnumsOnASingleLine: true | ||
AllowShortBlocksOnASingleLine: Never | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: All | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLoopsOnASingleLine: false | ||
|
||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: MultiLine | ||
|
||
# Custom brace breaking | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
AfterCaseLabel: true | ||
AfterClass: true | ||
AfterControlStatement: Never | ||
AfterEnum: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterObjCDeclaration: true | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: false | ||
BeforeElse: false | ||
BeforeWhile: false | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
|
||
# Make the closing brace of container literals go to a new line | ||
Cpp11BracedListStyle: false | ||
|
||
# Never format includes | ||
IncludeBlocks: Preserve | ||
# clang-format version 4.0 through 12.0: | ||
#SortIncludes: false | ||
# clang-format version 13.0+: | ||
#SortIncludes: Never | ||
|
||
# No length limit, in case it breaks macros, you can | ||
# disable it with /* clang-format off/on */ comments | ||
ColumnLimit: 0 | ||
|
||
IndentWidth: 4 | ||
ContinuationIndentWidth: 4 | ||
IndentCaseLabels: false | ||
IndentCaseBlocks: false | ||
IndentGotoLabels: true | ||
IndentPPDirectives: None | ||
IndentExternBlock: NoIndent | ||
|
||
PointerAlignment: Right | ||
SpaceAfterCStyleCast: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInConditionalStatement: false | ||
SpacesInContainerLiterals: true | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCaseColon: false | ||
SpaceBeforeParens: ControlStatements | ||
SpaceAroundPointerQualifiers: Default | ||
SpaceInEmptyBlock: false | ||
SpaceInEmptyParentheses: false | ||
|
||
UseCRLF: false | ||
UseTab: Never | ||
|
||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# For format see editorconfig.org | ||
# Copyright 2022 Collabora Ltd. | ||
# SPDX-License-Identifier: Zlib | ||
|
||
root = true | ||
|
||
[README.txt] | ||
end_of_line = crlf | ||
|
||
[*.{c,cc,cg,cpp,gradle,h,java,m,metal,pl,py,S,sh,txt}] | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{html,js,json,m4,yml,yaml,vcxproj,vcxproj.filters}] | ||
indent_size = 2 | ||
indent_style = space | ||
trim_tailing_whitespace = true | ||
|
||
[{CMakeLists.txt,cmake/*.cmake}] | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[{cmake/*.cmake.in}] | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[{Makefile.*,*.mk,*.sln,*.pbxproj,*.plist}] | ||
indent_size = 8 | ||
indent_style = tab | ||
tab_width = 8 | ||
|
||
[*.{markdown,md}] | ||
indent_size = 4 | ||
indent_style = space | ||
# Markdown syntax treats tabs as 4 spaces | ||
tab_width = 4 | ||
|
||
[{*.bat,*.rc}] | ||
end_of_line = crlf |