Skip to content

Instantly share code, notes, and snippets.

@disouzam
Created December 24, 2022 02:40
Show Gist options
  • Save disouzam/808126a13bd65dcbd3fe665784232035 to your computer and use it in GitHub Desktop.
Save disouzam/808126a13bd65dcbd3fe665784232035 to your computer and use it in GitHub Desktop.
Base settings.json for dotnet projects with variable for branch coverage threshold
{
"configuration": "release",
"{projectName}.branchCoverage.threshold": 100,
"debug.terminal.clearBeforeReusing": true,
"terminal.integrated.automationProfile.windows": {
"path": "C:\\Windows\\System32\\cmd.exe"
},
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/.git": true,
"**/.git-hooks-for-reuse": false,
"**/.vs": true,
"**/.vscode": false,
"**/.config": false
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.codeLens": true,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"files.autoSave": "onWindowChange",
"editor.stickyTabStops": true,
"xml.format.splitAttributesIndentSize": 4,
"editor.detectIndentation": false,
"files.eol": "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment