"workbench.editor.enablePreview": false

Sort Everything
This commit is contained in:
Mike Phares 2023-12-12 12:17:25 -07:00
parent 731ded5b19
commit 775ed9ef63

View File

@ -32,6 +32,9 @@
"breadcrumbs.showModules": false,
"csharp.suppressBuildAssetsNotification": true,
"csharp.suppressDotnetRestoreNotification": true,
"cSpell.words": [
"blazorwasm"
],
"debug.console.closeOnEnd": true,
"debug.console.fontSize": 12,
"debug.internalConsoleOptions": "neverOpen",
@ -44,6 +47,12 @@
"diffEditor.ignoreTrimWhitespace": false,
"dotnet.codeLens.enableReferencesCodeLens": false,
"dotnet.server.useOmnisharp": true,
"dotnetAcquisitionExtension.existingDotnetPath": [
{
"extensionId": "msazurermtools.azurerm-vscode-tools",
"path": "C:\\Program Files\\dotnet\\dotnet.exe"
}
],
"dotnetAcquisitionExtension.installTimeoutValue": 180,
"editor.accessibilitySupport": "off",
"editor.fontSize": 16,
@ -56,7 +65,16 @@
"explorer.confirmDragAndDrop": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": true,
"explorer.fileNesting.patterns": {
"*": "$(capture).*",
"*.component.html": "$(capture).component.*",
"*.razor": "$(capture).razor.*"
},
"extensions.ignoreRecommendations": true,
"files.exclude": {
"**/*.spec.ts": true,
"**/.git": false
},
"git.autofetch": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
@ -66,61 +84,48 @@
"omnisharp.disableMSBuildDiagnosticWarning": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableRoslynAnalyzers": true,
"razor.disableBlazorDebugPrompt": true,
"security.workspace.trust.untrustedFiles": "open",
"svelte.enable-ts-plugin": true,
"task.quickOpen.history": 20,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.enableMultiLinePasteWarning": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.tabs.enabled": true,
"thunder-client.saveToWorkspace": false,
"thunder-client.workspaceRelativePath": ".vscode",
"typescript.updateImportsOnFileMove.enabled": "always",
"vscode-edge-devtools.mirrorEdits": true,
"vscode-edge-devtools.webhint": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.commandCenter": true,
"window.menuBarVisibility": "compact",
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 1,
"workbench.commandPalette.history": 20,
"workbench.editor.empty.hint": "hidden",
"workbench.list.openMode": "doubleClick",
"workbench.startupEditor": "newUntitledFile",
"cSpell.words": [
"blazorwasm"
"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"
],
"dotnetAcquisitionExtension.existingDotnetPath": [
{
"extensionId": "msazurermtools.azurerm-vscode-tools",
"path": "C:\\Program Files\\dotnet\\dotnet.exe"
}
],
"explorer.fileNesting.patterns": {
"*.razor": "$(capture).razor.*",
"*.component.html": "$(capture).component.*",
"*": "$(capture).*"
},
"files.exclude": {
"**/.git": false,
"**/*.spec.ts": true
},
"remote.SSH.remotePlatform": {
"192.168.0.73": "linux",
"192.168.0.34": "linux",
"192.168.0.112": "linux"
},
"workbench.editorAssociations": {
"*.dib": "default",
"*.lnk": "ink.connector"
},
"privateExtensions.registries": [
{
"name": "localhost",
"registry": "http://localhost:4873/-/v1/search?text=&size=20&from=0"
}
],
"razor.disableBlazorDebugPrompt": true,
"remote.SSH.remotePlatform": {
"192.168.0.112": "linux",
"192.168.0.34": "linux",
"192.168.0.73": "linux"
},
"runTerminalCommand.commands": [
{
"auto": true,
@ -231,36 +236,7 @@
"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"
],
"security.workspace.trust.untrustedFiles": "open",
"settings.cycle": [
{
"id": "sortOrder",
@ -277,5 +253,30 @@
}
]
}
]
],
"svelte.enable-ts-plugin": true,
"task.quickOpen.history": 20,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.enableMultiLinePasteWarning": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.tabs.enabled": true,
"thunder-client.saveToWorkspace": false,
"thunder-client.workspaceRelativePath": ".vscode",
"typescript.updateImportsOnFileMove.enabled": "always",
"vscode-edge-devtools.mirrorEdits": true,
"vscode-edge-devtools.webhint": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.commandCenter": true,
"window.menuBarVisibility": "compact",
"window.newWindowDimensions": "maximized",
"window.zoomLevel": 1,
"workbench.commandPalette.history": 20,
"workbench.editor.empty.hint": "hidden",
"workbench.editor.enablePreview": false,
"workbench.editorAssociations": {
"*.dib": "default",
"*.lnk": "ink.connector"
},
"workbench.list.openMode": "doubleClick",
"workbench.startupEditor": "newUntitledFile"
}