Created
July 26, 2018 22:58
-
-
Save wilg/547c08f536356a6b09b0bdabf28d34f9 to your computer and use it in GitHub Desktop.
C# for Unity OmniSharp and VS Code Formatting Settings
This file contains hidden or 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", | |
"IndentationSize": 4, | |
"NewLinesForBracesInMethods": false, | |
"NewLinesForBracesInAccessors": false, | |
"NewLinesForBracesInAnonymousMethods": false, | |
"NewLinesForBracesInAnonymousTypes": false, | |
"NewLinesForBracesInControlBlocks": false, | |
"NewLinesForBracesInLambdaExpressionBody": false, | |
"NewLinesForBracesInObjectCollectionArrayInitializers": false, | |
"NewLinesForBracesInProperties": false, | |
"NewLinesForBracesInTypes": false | |
} | |
} |
This file contains hidden or 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
{ | |
"files.exclude": { | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"**/.gitignore": true, | |
"**/.gitmodules": true, | |
"**/*.booproj": true, | |
"**/*.pidb": true, | |
"**/*.suo": true, | |
"**/*.user": true, | |
"**/*.userprefs": true, | |
"**/*.unityproj": true, | |
"**/*.dll": true, | |
"**/*.exe": true, | |
"**/*.pdf": true, | |
"**/*.mid": true, | |
"**/*.midi": true, | |
"**/*.wav": true, | |
"**/*.gif": true, | |
"**/*.ico": true, | |
"**/*.jpg": true, | |
"**/*.jpeg": true, | |
"**/*.png": true, | |
"**/*.psd": true, | |
"**/*.tga": true, | |
"**/*.tif": true, | |
"**/*.tiff": true, | |
"**/*.3ds": true, | |
"**/*.3DS": true, | |
"**/*.fbx": true, | |
"**/*.FBX": true, | |
"**/*.lxo": true, | |
"**/*.LXO": true, | |
"**/*.ma": true, | |
"**/*.MA": true, | |
"**/*.obj": true, | |
"**/*.OBJ": true, | |
"**/*.asset": true, | |
"**/*.cubemap": true, | |
"**/*.flare": true, | |
"**/*.mat": true, | |
"**/*.meta": true, | |
"**/*.prefab": true, | |
"**/*.unity": true, | |
"build/": true, | |
"Build/": true, | |
"Library/": true, | |
"library/": true, | |
"obj/": true, | |
"Obj/": true, | |
"ProjectSettings/": true, | |
"temp/": true, | |
"Temp/": true | |
}, | |
"editor.detectIndentation": false, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"csharp.referencesCodeLens.enabled": false, | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment