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