From f5c4caba9d858a32cadbe2d78ac4ac0bc4ed4499 Mon Sep 17 00:00:00 2001 From: Marius Storhaug <marstor@hotmail.com> Date: Sun, 22 Oct 2023 10:13:56 +0200 Subject: [PATCH] Added vscode files --- .vscode/extensions.json | 6 +++ .vscode/settings.json | 81 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..038896b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "github.vscode-github-actions", + "ms-vscode.powershell" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e732ea1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,81 @@ +{ + "[json]": { + "editor.defaultFormatter": "vscode.json-language-features" + }, + "[jsonc]": { + "editor.defaultFormatter": "vscode.json-language-features" + }, + "[markdown]": { + "editor.defaultFormatter": "yzhang.markdown-all-in-one", + "editor.quickSuggestions": { + "comments": "off", + "other": "off", + "strings": "off" + }, + "editor.wordWrap": "off" + }, + "[powershell]": { + "editor.defaultFormatter": "ms-vscode.powershell", + "editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", + "files.encoding": "utf8bom" + }, + "[yaml]": { + "editor.defaultFormatter": "github.vscode-github-actions", + "editor.insertSpaces": true, + "editor.tabSize": 2, + }, + "[github-actions-workflow]": { + "editor.defaultFormatter": "github.vscode-github-actions", + "editor.insertSpaces": true, + "editor.tabSize": 2 + }, + "editor.rulers": [0, 150], + "powershell.codeFormatting.autoCorrectAliases": true, + "powershell.codeFormatting.newLineAfterCloseBrace": false, + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", + "powershell.codeFormatting.preset": "OTBS", + "powershell.codeFormatting.trimWhitespaceAroundPipe": true, + "powershell.codeFormatting.useConstantStrings": true, + "powershell.codeFormatting.useCorrectCasing": true, + "powershell.codeFormatting.whitespaceBetweenParameters": true, + "powershell.pester.codeLens": false, + "powershell.powerShellDefaultVersion": "PowerShell (x64)", + "powershell.scriptAnalysis.enable": true, + "todo-tree.general.tags": [ + "BUG", + "HACK", + "FIXME", + "TODO", + "DEBUG" + ], + "todo-tree.highlights.customHighlight": { + "TODO": { + "background": "#00ff00", + "foreground": "#ffffff", + "icon": "alert", + "iconColour": "#00ff00", + "type": "text-and-comment" + }, + "HACK": { + "background": "#ff0000", + "foreground": "#ffffff", + "icon": "alert", + "iconColour": "#ff0000", + "type": "text-and-comment" + }, + "FIXME": { + "background": "#ff0000", + "foreground": "#ffffff", + "icon": "alert", + "iconColour": "#ff0000", + "type": "text-and-comment" + }, + "BUG": { + "background": "#ff0000", + "foreground": "#ffffff", + "icon": "alert", + "iconColour": "#ff0000", + "type": "text-and-comment" + } + } +}