Open
Description
To follow on from the comments starting at #1429 (comment)...
PSSA rules should be enable-able and disable-able in VSCode configuration. The current proposal is:
- Disabled rules turn off default rules, but not a local PSSA settings file
- Enabled rules add to the default rules
Current proposed format is:
{
"powershell.scriptAnalysis.rules": {
"disable": [
"PSAvoidTrailingWhitespace"
],
"enable": [
"RuleThatILikeButMyColleaguesDont",
]
}
}