Marco Blessing
afab3c870c
## About This pull request reflects all changes done in the `linuxsupport` branch. ## Content - Enable PowerShell 6 Core support - Use PFX Certificate for encryption ( fixes #32 ) - Updates CI / CD pipeline ( fixes #31 ) - uses portable libressl ( fixes #34 ) - adds `-PassThru` switch for returning current `VIServer` session in `Connect-To` ( fixes #34 ) - adds git lfs for embedded libressl files - restructured internal functions into `Private` dir - added certificate related functions - adds travis build pipeline for tests
52 lines
1.6 KiB
JSON
52 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": true,
|
|
"powershell.codeFormatting.preset": "Custom",
|
|
// cspell spellchecker options
|
|
"cSpell.enabledLanguageIds": [
|
|
"c",
|
|
"cpp",
|
|
"csharp",
|
|
"go",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"json",
|
|
"latex",
|
|
"markdown",
|
|
"php",
|
|
"plaintext",
|
|
"powershell",
|
|
"python",
|
|
"text",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"yml"
|
|
]
|
|
}
|