28 lines
750 B
JSON
28 lines
750 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
//-------- Editor configuration --------
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4,
|
|
|
|
//-------- Files configuration --------
|
|
"files.autoGuessEncoding": false,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"search.exclude": {
|
|
"**/Tests/Data*": true
|
|
},
|
|
//-------- PowerShell configuration --------
|
|
"powershell.codeFormatting.alignPropertyValuePairs": true,
|
|
"powershell.codeFormatting.preset": "Allman",
|
|
"powershell.scriptAnalysis.settingsPath": "./ScriptAnalyzerSettings.psd1",
|
|
|
|
//-------- Language configuration --------
|
|
"[json]": {
|
|
"editor.tabSize": 2
|
|
},
|
|
|
|
"[xml]": {
|
|
"editor.tabSize": 2
|
|
}
|
|
}
|