mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-10-30 14:17:54 +00:00
19 lines
652 B
JSON
19 lines
652 B
JSON
// Configure PSScriptAnalyzer settings
|
|
{
|
|
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1",
|
|
"powershell.codeFormatting.preset": "OTBS",
|
|
"powershell.codeFormatting.alignPropertyValuePairs": true,
|
|
"powershell.codeFormatting.ignoreOneLineBlock": true,
|
|
"powershell.codeFormatting.useConstantStrings": true,
|
|
"powershell.codeFormatting.useCorrectCasing": true,
|
|
"powershell.codeFormatting.whitespaceBetweenParameters": true,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/tmp": true
|
|
}
|
|
}
|