Created
February 19, 2018 22:13
-
-
Save Makistos/1149725a2fa68d0b3c65e46f6ea3827d to your computer and use it in GitHub Desktop.
Omnisharp settings for C# / Unity3d. Put in <userdir>\.omnisharp\. #csharp #unity3d #code-format
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": 4, | |
"IndentationSize": 4, | |
"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": false, | |
"NewLineForFinally": false, | |
"NewLineForMembersInObjectInit": true, | |
"NewLineForMembersInAnonymousTypes": true, | |
"NewLineForClausesInQuery": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment