|
| 1 | +{ |
| 2 | + "folders": [ |
| 3 | + { |
| 4 | + "path": "." |
| 5 | + } |
| 6 | + ], |
| 7 | + "settings": { |
| 8 | + "files.encoding": "utf8bom", |
| 9 | + "files.eol": "\r\n", |
| 10 | + "files.trimTrailingWhitespace": true, |
| 11 | + "files.associations": { |
| 12 | + ".*rc": "json", |
| 13 | + ".code-workspace": "json", |
| 14 | + "app.config": "xml" |
| 15 | + }, |
| 16 | + "editor.insertSpaces": true, |
| 17 | + "editor.formatOnSave": true, |
| 18 | + "editor.renderWhitespace": "trailing", |
| 19 | + "[markdown]": { |
| 20 | + "editor.wordWrap": "on", |
| 21 | + "editor.quickSuggestions": { |
| 22 | + "comments": "off", |
| 23 | + "strings": "off", |
| 24 | + "other": "off" |
| 25 | + }, |
| 26 | + "editor.defaultFormatter": "DavidAnson.vscode-markdownlint" |
| 27 | + }, |
| 28 | + "[json]": { |
| 29 | + "editor.quickSuggestions": { |
| 30 | + "strings": true |
| 31 | + }, |
| 32 | + "editor.suggest.insertMode": "replace", |
| 33 | + "editor.defaultFormatter": "vscode.json-language-features" |
| 34 | + }, |
| 35 | + "markdownlint.config": { |
| 36 | + "MD033": { |
| 37 | + "allowed_elements": [ |
| 38 | + "p" |
| 39 | + ], |
| 40 | + "MD012": false, // extra line [2 empty lines] |
| 41 | + "MD013": false, // line length |
| 42 | + }, |
| 43 | + "MD055": false, // tables |
| 44 | + "MD004": { |
| 45 | + "style": "dash" // List style |
| 46 | + } |
| 47 | + }, |
| 48 | + "[shellscript]": { |
| 49 | + "files.encoding": "utf8", |
| 50 | + "editor.tabSize": 4 |
| 51 | + }, |
| 52 | + "[github-actions-workflow]": { |
| 53 | + "editor.defaultFormatter": "redhat.vscode-yaml" |
| 54 | + }, |
| 55 | + "powershell.codeFormatting.useCorrectCasing": true, |
| 56 | + "powershell.codeFormatting.whitespaceBetweenParameters": true, |
| 57 | + "powershell.integratedConsole.suppressStartupBanner": true, |
| 58 | + "powershell.integratedConsole.showOnStartup": false, |
| 59 | + "powershell.scriptAnalysis.settingsPath": "./.vscode/PSScriptAnalyzerSettings.psd1", |
| 60 | + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", |
| 61 | + "powershell.developer.editorServicesLogLevel": "Warning", |
| 62 | + "files.exclude": { |
| 63 | + "**/.vs/": true, |
| 64 | + "**/*.orig": true, |
| 65 | + "**/*.~*": true, |
| 66 | + "**/*_i.c": true, |
| 67 | + "**/*_p.c": true, |
| 68 | + "**/*_h.h": true, |
| 69 | + "**/*.ilk": true, |
| 70 | + "**/*.meta": true, |
| 71 | + "**/*.obj": true, |
| 72 | + "**/*.iobj": true, |
| 73 | + "**/*.pch": true, |
| 74 | + "**/*.pdb": true, |
| 75 | + "**/*.ipdb": true, |
| 76 | + "**/*.pgc": true, |
| 77 | + "**/*.pgd": true, |
| 78 | + "**/*.rsp": true, |
| 79 | + "**/*.sbr": true, |
| 80 | + "**/*.tlb": true, |
| 81 | + "**/*.tli": true, |
| 82 | + "**/*.tlh": true, |
| 83 | + "**/*.tmp": true, |
| 84 | + "**/*.tmp_proj": true, |
| 85 | + "**/*_wpftmp.csproj": true, |
| 86 | + "**/*.log": true, |
| 87 | + "**/*.vspscc": true, |
| 88 | + "**/*.vssscc": true, |
| 89 | + "**/.builds": true, |
| 90 | + "**/*.pidb": true, |
| 91 | + "**/*.svclog": true, |
| 92 | + "**/*.scc": true, |
| 93 | + "**/*.jfm": true, |
| 94 | + "**/*.dbmdl": true, |
| 95 | + "**/*.psess": true, |
| 96 | + "**/*.vsp": true, |
| 97 | + "**/*.vspx": true, |
| 98 | + "**/*.sap": true, |
| 99 | + "**/*.e2e": true, |
| 100 | + "**/$tf/": true, |
| 101 | + "**/*.rsuser": true, |
| 102 | + "**/*.suo": true, |
| 103 | + "**/*.user": true, |
| 104 | + "**/*.userosscache": true, |
| 105 | + "**/*.sln.docstates": true, |
| 106 | + "packages/": true, |
| 107 | + "**/TestResults/": true, |
| 108 | + ".nupkg/": true, |
| 109 | + "**/bin/": true, |
| 110 | + "**/obj/": true, |
| 111 | + "**/packages.lock.json": true |
| 112 | + }, |
| 113 | + "powershell.codeFormatting.avoidSemicolonsAsLineTerminators": true, |
| 114 | + "files.insertFinalNewline": true, |
| 115 | + "xml.format.maxLineWidth": 180 |
| 116 | + }, |
| 117 | + "extensions": { |
| 118 | + "recommendations": [ |
| 119 | + "yzhang.markdown-all-in-one", |
| 120 | + "davidanson.vscode-markdownlint", |
| 121 | + "esbenp.prettier-vscode", |
| 122 | + "dbaeumer.vscode-eslint", |
| 123 | + "ms-vscode.test-adapter-converter", |
| 124 | + "hbenl.vscode-test-explorer", |
| 125 | + "timonwong.shellcheck", |
| 126 | + "github.vscode-github-actions", |
| 127 | + "redhat.vscode-yaml" |
| 128 | + ] |
| 129 | + } |
| 130 | +} |
0 commit comments