|
| 1 | +{ |
| 2 | + "[json]": { |
| 3 | + "editor.defaultFormatter": "vscode.json-language-features" |
| 4 | + }, |
| 5 | + "[jsonc]": { |
| 6 | + "editor.defaultFormatter": "vscode.json-language-features" |
| 7 | + }, |
| 8 | + "[markdown]": { |
| 9 | + "editor.defaultFormatter": "yzhang.markdown-all-in-one", |
| 10 | + "editor.quickSuggestions": { |
| 11 | + "comments": "off", |
| 12 | + "other": "off", |
| 13 | + "strings": "off" |
| 14 | + }, |
| 15 | + "editor.wordWrap": "off" |
| 16 | + }, |
| 17 | + "[powershell]": { |
| 18 | + "editor.defaultFormatter": "ms-vscode.powershell", |
| 19 | + "editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", |
| 20 | + "files.encoding": "utf8bom" |
| 21 | + }, |
| 22 | + "[yaml]": { |
| 23 | + "editor.defaultFormatter": "github.vscode-github-actions", |
| 24 | + "editor.insertSpaces": true, |
| 25 | + "editor.tabSize": 2, |
| 26 | + }, |
| 27 | + "[github-actions-workflow]": { |
| 28 | + "editor.defaultFormatter": "github.vscode-github-actions", |
| 29 | + "editor.insertSpaces": true, |
| 30 | + "editor.tabSize": 2 |
| 31 | + }, |
| 32 | + "editor.rulers": [0, 150], |
| 33 | + "powershell.codeFormatting.autoCorrectAliases": true, |
| 34 | + "powershell.codeFormatting.newLineAfterCloseBrace": false, |
| 35 | + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", |
| 36 | + "powershell.codeFormatting.preset": "OTBS", |
| 37 | + "powershell.codeFormatting.trimWhitespaceAroundPipe": true, |
| 38 | + "powershell.codeFormatting.useConstantStrings": true, |
| 39 | + "powershell.codeFormatting.useCorrectCasing": true, |
| 40 | + "powershell.codeFormatting.whitespaceBetweenParameters": true, |
| 41 | + "powershell.pester.codeLens": false, |
| 42 | + "powershell.powerShellDefaultVersion": "PowerShell (x64)", |
| 43 | + "powershell.scriptAnalysis.enable": true, |
| 44 | + "todo-tree.general.tags": [ |
| 45 | + "BUG", |
| 46 | + "HACK", |
| 47 | + "FIXME", |
| 48 | + "TODO", |
| 49 | + "DEBUG" |
| 50 | + ], |
| 51 | + "todo-tree.highlights.customHighlight": { |
| 52 | + "TODO": { |
| 53 | + "background": "#00ff00", |
| 54 | + "foreground": "#ffffff", |
| 55 | + "icon": "alert", |
| 56 | + "iconColour": "#00ff00", |
| 57 | + "type": "text-and-comment" |
| 58 | + }, |
| 59 | + "HACK": { |
| 60 | + "background": "#ff0000", |
| 61 | + "foreground": "#ffffff", |
| 62 | + "icon": "alert", |
| 63 | + "iconColour": "#ff0000", |
| 64 | + "type": "text-and-comment" |
| 65 | + }, |
| 66 | + "FIXME": { |
| 67 | + "background": "#ff0000", |
| 68 | + "foreground": "#ffffff", |
| 69 | + "icon": "alert", |
| 70 | + "iconColour": "#ff0000", |
| 71 | + "type": "text-and-comment" |
| 72 | + }, |
| 73 | + "BUG": { |
| 74 | + "background": "#ff0000", |
| 75 | + "foreground": "#ffffff", |
| 76 | + "icon": "alert", |
| 77 | + "iconColour": "#ff0000", |
| 78 | + "type": "text-and-comment" |
| 79 | + } |
| 80 | + } |
| 81 | +} |
0 commit comments