Last active
May 4, 2017 10:22
-
-
Save AndiSHFR/090f7158c190aa610c8952f066d42608 to your computer and use it in GitHub Desktop.
Formatting options for OmniSharp. Place this file in your project folder. Use CTRL+SHIFT+V to reformat the source code.
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
{ | |
"FormattingOptions": { | |
"NewLine": "\n", | |
"UseTabs": false, | |
"TabSize": 2, | |
"IndentationSize": 2, | |
"SpacingAfterMethodDeclarationName": false, | |
"SpaceWithinMethodDeclarationParenthesis": false, | |
"SpaceBetweenEmptyMethodDeclarationParentheses": false, | |
"SpaceAfterMethodCallName": false, | |
"SpaceWithinMethodCallParentheses": false, | |
"SpaceBetweenEmptyMethodCallParentheses": false, | |
"SpaceAfterControlFlowStatementKeyword": true, | |
"SpaceWithinExpressionParentheses": false, | |
"SpaceWithinCastParentheses": false, | |
"SpaceWithinOtherParentheses": false, | |
"SpaceAfterCast": false, | |
"SpacesIgnoreAroundVariableDeclaration": false, | |
"SpaceBeforeOpenSquareBracket": false, | |
"SpaceBetweenEmptySquareBrackets": false, | |
"SpaceWithinSquareBrackets": false, | |
"SpaceAfterColonInBaseTypeDeclaration": true, | |
"SpaceAfterComma": true, | |
"SpaceAfterDot": false, | |
"SpaceAfterSemicolonsInForStatement": true, | |
"SpaceBeforeColonInBaseTypeDeclaration": true, | |
"SpaceBeforeComma": false, | |
"SpaceBeforeDot": false, | |
"SpaceBeforeSemicolonsInForStatement": false, | |
"SpacingAroundBinaryOperator": "single", | |
"IndentBraces": false, | |
"IndentBlock": true, | |
"IndentSwitchSection": true, | |
"IndentSwitchCaseSection": true, | |
"LabelPositioning": "oneLess", | |
"WrappingPreserveSingleLine": true, | |
"WrappingKeepStatementsOnSingleLine": true, | |
"NewLinesForBracesInTypes": false, | |
"NewLinesForBracesInMethods": false, | |
"NewLinesForBracesInProperties": false, | |
"NewLinesForBracesInAccessors": false, | |
"NewLinesForBracesInAnonymousMethods": false, | |
"NewLinesForBracesInControlBlocks": false, | |
"NewLinesForBracesInAnonymousTypes": false, | |
"NewLinesForBracesInObjectCollectionArrayInitializers": false, | |
"NewLinesForBracesInLambdaExpressionBody": false, | |
"NewLineForElse": false, | |
"NewLineForCatch": true, | |
"NewLineForFinally": true, | |
"NewLineForMembersInObjectInit": true, | |
"NewLineForMembersInAnonymousTypes": true, | |
"NewLineForClausesInQuery": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment