Skip to content

Instantly share code, notes, and snippets.

@reflectiondm
Last active February 20, 2017 14:08
Show Gist options
  • Save reflectiondm/85482fb64276e09de32ba861c787b357 to your computer and use it in GitHub Desktop.
Save reflectiondm/85482fb64276e09de32ba861c787b357 to your computer and use it in GitHub Desktop.
A VSCode settings.json file optimized to use on windows for javascript and dotnet core projects
// Place your settings in this file to overwrite the default settings
{
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"bin/": true,
"obj/": true,
".vs": true,
"*.xproj.user": true
},
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe",
// extensions settings
"projectManager.openInNewWindow": false,
"projectManager.showProjectNameInStatusBar": false,
"projectManager.vscode.baseFolders": [
"c:\\dev"
],
"projectManager.vscode.maxDepthRecursion": 2,
"relativePath.ignore": ["**/node_modules/**"],
"relativePath.removeExtension": true,
"relativePath.removeLeadingDot": true,
"npm-intellisense.scanDevDependencies": true,
"git.confirmSync": false,
"window.zoomLevel": 0,
"vsicons.presets.angular": false,
"vsicons.projectDetection.autoReload": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment