Skip to content

Instantly share code, notes, and snippets.

@dron247
Created March 29, 2017 05:07
Show Gist options
  • Save dron247/018f1f9bb3f943d586dc6f0d2084786a to your computer and use it in GitHub Desktop.
Save dron247/018f1f9bb3f943d586dc6f0d2084786a to your computer and use it in GitHub Desktop.
Slightly better settings for C# formatter in VS Code.
{
"FormattingOptions": {
"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": false,
"NewLineForMembersInAnonymousTypes": false,
"NewLineForClausesInQuery": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment