2021-12-27 23:52:24 +05:30
|
|
|
// Configure PSScriptAnalyzer settings
|
|
|
|
{
|
|
|
|
"[powershell]": {
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
|
|
|
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1",
|
|
|
|
"powershell.codeFormatting.preset": "OTBS",
|
|
|
|
"powershell.codeFormatting.alignPropertyValuePairs": true,
|
|
|
|
"powershell.codeFormatting.ignoreOneLineBlock": true,
|
|
|
|
"json.schemas": [
|
|
|
|
{
|
|
|
|
"url": "https://raw.githubusercontent.com/ScoopInstaller/Scoop/master/schema.json",
|
|
|
|
"fileMatch": [
|
2023-05-23 23:12:49 +00:00
|
|
|
"bucket/**/*.json"
|
2021-12-27 23:52:24 +05:30
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.git": true,
|
|
|
|
"**/.svn": true,
|
|
|
|
"**/.hg": true,
|
|
|
|
"**/CVS": true,
|
|
|
|
"**/.DS_Store": true,
|
|
|
|
"**/tmp": true
|
|
|
|
}
|
|
|
|
}
|