forked from OCram85/PSCredentialStore
Marco Blessing
64af16cc08
* adds basic module layout * fix module manifest encoding * fix callsign in appveyor helper * adds challenge file related functions * adds connection manager functions * adds Test-ChallengeFile * adds item related functions * adds store related functions * adds cSpell dictionary * adds CredentialStore related Pester tests * [WIP] test Pester file * fix typo * adds file dependencies * [WIP] fix pester tests * fix exception state * [WIP] add file dependencies * fix gitkeep filename * set constant debug module version string * adds Pester Tests for New-CredentialStoreItem * adds basic readme file * adds functions to export; adds meta data * adds vscode debug config * adds test for optional dependencies * [WIP] Implements optional dependency test * adds taskrunner definitions * adds CBH * add gitignore file * adds basic Build tasks * typo fixed * adds build folder to ignore list * adds Cisco and NetApp opt dependencies * adds build task * fix end of line dequence * remove task.json error * adds sources for optional modules * enables Pester and posh-git * prepare pre-release
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
// Set basic file related options:
|
|
"files.encoding": "utf8",
|
|
"files.eol": "\r\n",
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
// Formation and editor options
|
|
"editor.renderWhitespace": "boundary",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"editor.rulers": [
|
|
116
|
|
],
|
|
// powershell general
|
|
"powershell.startAutomatically": true,
|
|
"powershell.useX86Host": false,
|
|
"powershell.enableProfileLoading": true,
|
|
"powershell.scriptAnalysis.enable": true,
|
|
// powershell code Formatting
|
|
"powershell.codeFormatting.openBraceOnSameLine": true,
|
|
"powershell.codeFormatting.newLineAfterOpenBrace": true,
|
|
"powershell.codeFormatting.newLineAfterCloseBrace": true,
|
|
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
|
|
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
|
|
"powershell.codeFormatting.whitespaceAroundOperator": true,
|
|
"powershell.codeFormatting.whitespaceAfterSeparator": true,
|
|
"powershell.codeFormatting.ignoreOneLineBlock": true,
|
|
"powershell.codeFormatting.alignPropertyValuePairs": false,
|
|
// cspell spellchecker options
|
|
"cSpell.enabledLanguageIds": [
|
|
"c",
|
|
"cpp",
|
|
"csharp",
|
|
"go",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"json",
|
|
"latex",
|
|
"markdown",
|
|
"php",
|
|
"plaintext",
|
|
"powershell",
|
|
"python",
|
|
"text",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"yml"
|
|
]
|
|
}
|