vs-code-settings/User/settings.json
Mike Phares cedd68947c .gitignore update, .editorconfig updates,
added git config, omnisharp.json updates and Infineon extensions update
2022-11-11 12:38:32 -07:00

238 lines
7.3 KiB
JSON

{
"breadcrumbs.showClasses": false,
"breadcrumbs.showInterfaces": false,
"breadcrumbs.showMethods": false,
"breadcrumbs.showModules": false,
"csharp.referencesCodeLens.enabled": false,
"csharp.suppressBuildAssetsNotification": true,
"csharp.suppressDotnetRestoreNotification": true,
"debug.console.closeOnEnd": true,
"debug.console.fontSize": 12,
"debug.internalConsoleOptions": "neverOpen",
"debug.javascript.suggestPrettyPrinting": false,
"debug.javascript.usePreview": true,
"debug.javascript.usePreviewAutoAttach": true,
"debug.onTaskErrors": "showErrors",
"debug.openDebug": "neverOpen",
"debug.terminal.clearBeforeReusing": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.fontSize": 16,
"editor.hover.delay": 1000,
"editor.largeFileOptimizations": false,
"editor.renderWhitespace": "none",
"editor.stickyScroll.enabled": true,
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"git.autofetch": true,
"git.autofetchPeriod": 1800,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.ignoreMissingGitWarning": true,
"jenkins.pipeline.linter.connector.url": "http://mestsa003.infineon.com:8080/pipeline-model-converter/validate",
"omnisharp.disableMSBuildDiagnosticWarning": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableRoslynAnalyzers": true,
"razor.disableBlazorDebugPrompt": true,
"security.workspace.trust.untrustedFiles": "open",
"task.quickOpen.history": 20,
"terminal.integrated.enableMultiLinePasteWarning": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.tabs.enabled": true,
"vscode-edge-devtools.mirrorEdits": true,
"vscode-edge-devtools.webhint": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 1,
"workbench.commandPalette.history": 20,
"workbench.editor.untitled.hint": "hidden",
"workbench.list.openMode": "doubleClick",
"workbench.startupEditor": "newUntitledFile",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[xml]": {
"editor.defaultFormatter": "mikeburgh.xml-format"
},
"remote.SSH.remotePlatform": {
"192.168.0.73": "linux",
"192.168.0.34": "linux",
"192.168.0.112": "linux"
},
"workbench.editorAssociations": {
"*.pcl": "hexEditor.hexedit",
"*.dib": "default",
"*.lnk": "ink.connector"
},
"runTerminalCommand.commands": [
{
"auto": true,
"command": "dotnet build --runtime win-x64 --self-contained",
"group": ".NET Core",
"name": ".net Core - Build Win-x64 - Self Contained"
},
{
"auto": true,
"command": "dotnet new blazorwasm --hosted --pwa",
"group": ".NET Core",
"name": ".net Core - New Blazor Web Assembly Hosted and Progressive Web Application"
},
{
"auto": true,
"command": "dotnet nuget list source",
"group": ".NET Core",
"name": ".net Core - nuget list"
},
{
"auto": true,
"command": "dotnet format --report .vscode",
"group": ".NET Core",
"name": ".net Core - Format Report in .vscode"
},
{
"auto": false,
"command": "dotnet publish --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net5.0\\asdf\\\"",
"group": ".NET Core",
"name": ".net Core - Publish - D:\\net5.0"
},
{
"auto": true,
"command": "git branch -vv",
"group": "Git",
"name": "Git - Current Branch and Remote"
},
{
"auto": true,
"command": "git diff --name-only",
"group": "Git",
"name": "Git - Diff"
},
{
"auto": true,
"command": "git diff HEAD --name-only",
"group": "Git",
"name": "Git - Diff (HEAD)"
},
{
"auto": true,
"command": "git diff --staged --name-only",
"group": "Git",
"name": "Git - Staged"
},
{
"auto": false,
"command": "git clone git@192.168.0.73:/srv/git/{clipboard}.git",
"group": "Git",
"name": "Git - Clone (Clipboard)"
},
{
"auto": true,
"command": "npm audit fix",
"group": "NPM",
"name": "NPM - Audit Fix"
},
{
"auto": true,
"command": "npm audit fix --force",
"group": "NPM",
"name": "NPM - Audit Fix Force"
},
{
"auto": true,
"command": "npm install",
"group": "NPM",
"name": "NPM - Install (Restore)"
},
{
"auto": true,
"command": "vsce package",
"group": "NPM",
"name": "NPM - Package"
},
{
"auto": true,
"command": "npm run compile",
"group": "NPM",
"name": "NPM - Run Compile (Build)"
},
{
"auto": true,
"command": "\"C:\\Program Files\\PuTTY\\putty.exe\" -ssh unity4@192.168.0.73 -pw 4hink",
"group": "Putty",
"name": "Putty - Unity4"
},
{
"auto": true,
"command": "sudo chown unity4 {resource}",
"group": "Ubuntu",
"name": "Ubuntu - chown unity4"
},
{
"auto": true,
"command": "sudo chown root {resource}",
"group": "Ubuntu",
"name": "Ubuntu - chown root"
}
],
"prettier.enabledLanguageIds": [
"csharp",
"css",
"elm",
"flow",
"graphql",
"handlebars",
"html",
"java",
"javascript",
"javascriptreact",
"jsonc",
"less",
"markdown",
"mdx",
"php",
"postcss",
"ruby",
"scss",
"solidity",
"svelte",
"svg",
"typescript",
"typescriptreact",
"twig",
"vue",
"xml",
"yaml",
"json"
],
"settings.cycle": [
{
"id": "sortOrder",
"overrideWorkspaceSettings": true,
"values": [
{
"explorer.sortOrder": "default"
},
{
"explorer.sortOrder": "modified"
},
{
"explorer.sortOrder": "type"
}
]
}
]
}