Created
April 24, 2018 18:37
-
-
Save gregbown/69d5ff888cb29b7f43a49f31154d1840 to your computer and use it in GitHub Desktop.
Clang format YAML file for local overrides in TypeScript
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
Language: JavaScript | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: AlwaysBreak | |
AlignEscapedNewlinesLeft: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false | |
AlwaysBreakBeforeMultilineStrings: true | |
AlwaysBreakTemplateDeclarations: true | |
BasedOnStyle: Google | |
BinPackParameters: false | |
BreakBeforeBraces: Custom | |
BraceWrapping: | |
AfterClass: false | |
AfterEnum: false | |
AfterStruct: false | |
AfterFunction: false | |
AfterNamespace: false | |
AfterStruct: false | |
BeforeElse: false | |
AfterControlStatement: false | |
SplitEmptyFunction: false | |
ColumnLimit: 100 | |
CommentPragmas: '' | |
ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
ConstructorInitializerIndentWidth: 4 | |
ContinuationIndentWidth: 4 | |
DerivePointerAlignment: false | |
DisableFormat: false | |
ExperimentalAutoDetectBinPacking: false | |
IndentCaseLabels: false | |
IndentFunctionDeclarationAfterType: false | |
IndentWidth: 4 | |
IndentWrappedFunctionNames: false | |
JavaScriptQuotes: Single | |
KeepEmptyLinesAtTheStartOfBlocks: false | |
MaxEmptyLinesToKeep: 1 | |
NamespaceIndentation: All | |
PenaltyBreakBeforeFirstCallParameter: 1 | |
PenaltyBreakComment: 300 | |
PenaltyBreakFirstLessLess: 120 | |
PenaltyBreakString: 1000 | |
PenaltyExcessCharacter: 1 | |
PenaltyReturnTypeOnItsOwnLine: 1000 | |
PointerAlignment: Left | |
SpaceBeforeAssignmentOperators: true | |
SpaceBeforeParens: ControlStatements | |
SpaceInEmptyParentheses: false | |
SpacesBeforeTrailingComments: 1 | |
SpaceBeforeCtorInitializerColon: false | |
SpaceBeforeInheritanceColon: false | |
SpaceBeforeRangeBasedForLoopColon: false | |
SpacesInAngles: false | |
SpacesInParentheses: false | |
TabWidth: 4 | |
UseTab: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment