vscode-powershell icon indicating copy to clipboard operation
vscode-powershell copied to clipboard

Allow VSCode configuration of PSScriptAnalyzer rules

Open rjmholt opened this issue 7 years ago • 12 comments

To follow on from the comments starting at https://github.com/PowerShell/vscode-powershell/issues/1429#issuecomment-404695963...

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",
    ]
  }
}

rjmholt avatar Jul 20 '18 01:07 rjmholt

How would you plan on addressing rules that are configurable such as PSProvideCommentHelp or PSAvoidUsingCmdletAliases?

Halkcyon avatar Sep 10 '18 19:09 Halkcyon

@TheIncorrigible1 Good question. I don't have anything particular in mind. The fact that we are even proposing to make a settings-embedded JSON configuration for a psd1-file-configured tool already feels a bit odd to me, but it seems to be what some users are asking for.

The first two solutions I can imagine suggested are:

  1. You can't configure them; if you want that kind of configuration, it's time to write a psd1 file.
  2. We just translate the whole psd1 schema into JSON

rjmholt avatar Sep 10 '18 23:09 rjmholt

I don't see why we can't have our cake and eat it, too! There are probably a few ways to go about this in JSON syntax, but, perhaps the easiest is to modify the proposed enable property above:

{
  "powershell.scriptAnalysis.rules": {
    "disable": [
      "PSAvoidTrailingWhitespace"
    ],
    "enable": [
      {
        "rule": "PSPlaceOpenBrace",
        "configuration": {
          "Enable": true,
          "OnSameLine": true,
          "NewLineAfter": true
        }
      },
      { "rule": "PSUseSingulareNouns" },
    ]
  }
}

So, one rule can have a configuration, while the second rule, which is not configurable, does not--so the user would not provide a configuration. But even if the user were to provide a configuration for a non-configurable rule, and even if the configuration is added to a generated PSScriptAnalyserSettings.psd1 file, wouldn't it simply be ignored since PSScriptAnalyzer would never attempt to configure it in the first place since the rule is not configurable?

fourpastmidnight avatar Jan 18 '19 16:01 fourpastmidnight

It would be nice if PSScriptAnalyzer Rules were stored in the User Settings / Extensions area (JSON).

I ran into this as I wanted to customize which rules apply, and I chased this link down: https://superuser.com/questions/1393186/how-to-disable-psscriptanalyzers-psavoidusingcmdletaliases-in-powershell-extens/1397066?noredirect=1#comment2107064_1397066

I set the: "powershell.scriptAnalysis.settingsPath": "", to toggle via a script (which is example #3 in the 'superuser' page.

I currently use an extension 'Settings Sync'. If the PSScriptAnalyzer Rules were stored in the User Settings, it would simplify dealing with these toggles for me, as they would sync along with all my other settings.

moymike avatar Jan 23 '19 17:01 moymike

The aspect of selective disabling / enabling of rules is essentially a duplicate of #823, which asks that the existing GUI capability of selecting rules (>PowerShell: Select PSScriptAnalyzer Rules) be persisted across sessions.

Adding rule configuration would be nice too (for which a GUI method will probably never be implemented due to complexity, if I were to guess).

@fourpastmidnight: I like the idea, but for rule-name-only entries you should be able to use just the name as a string value; e.g., "PSUseSingularNouns" rather than { "rule": "PSUseSingularNouns" }.

mklement0 avatar Nov 05 '19 19:11 mklement0

It seems >PowerShell: Select PSScriptAnalyzer Rules was removed at some point. Could we get this ability to configure PSScriptAnalyzer thru user settings/workspace settings?

PrzemyslawKlys avatar Aug 12 '20 07:08 PrzemyslawKlys

PSSA has it's own settings file format. You can use it and configure user/workspace setting to point to that file:

    "powershell.scriptAnalysis.settingsPath": "./PSScriptAnalyzerSettings.psd1",

The nice thing with this approach is that you can use this PSSA settings file with PSSA outside of VSCode - as part of a command line build, interactive invocation of PSSA, etc. If you open the VSCode examples, there is a sample PSScriptAnalyzerSettings.psd1 file you can start with.

rkeithhill avatar Aug 12 '20 15:08 rkeithhill

I wonder if there is a way to set global configuration instead of making a copy of psd1 file in every project?

hongwen000 avatar Jul 10 '22 08:07 hongwen000

@hongwen000 My workaround is:

  • have PSScriptAnalyzerSettings.psd1 file inside your GitHub repo
  • clone the repo locally into your user profile/Documents directory
  • create C:\Users\Public\PSScriptAnalyzerSettings.psd1 as a Symbolic Link into the repo
  • set powershell.scriptAnalysis.settingsPath to C:\Users\Public\PSScriptAnalyzerSettings.psd1

Helper function:

# Check admin rights
function Test-Elevation {
    $windowsPrincipal = [System.Security.Principal.WindowsPrincipal]::new( [System.Security.Principal.WindowsIdentity]::GetCurrent() )
    $windowsPrincipal.IsInRole( [System.Security.Principal.WindowsBuiltInRole]::Administrator )
}

# VSCode PSScriptAnalyzerSettings
if (Test-Elevation) {
    if ( -NOT (Test-Path "C:\Users\Public\PSScriptAnalyzerSettings.psd1")) {
        New-Item -ItemType SymbolicLink -Path "C:\Users\Public\PSScriptAnalyzerSettings.psd1" -Value "$PSProfileDirectory\PSScriptAnalyzerSettings.psd1" | Out-Null
    }
}

Hope this help.

ALIENQuake avatar Jul 12 '22 21:07 ALIENQuake

@ALIENQuake Wow, thanks so much for your reply! It looks great, but I am a little confused about some details:

  1. Should I create a symbolic link file PSScriptAnalyzerSettings.psd1 targeting C:\Users\Public\PSScriptAnalyzerSettings.psd1 in the root directory of every repo that use PSScriptAnalyzer?
  2. Or just set powershell.scriptAnalysis.settingsPath as C:\Users\Public\PSScriptAnalyzerSettings.psd1 in the VsCode User-wise configuration?
  3. Or PSScriptAnalyzerSettings.psd1 under $PSProfileDirectory is a global configuration, so I just need create one under $PSProfileDirectory?

hongwen000 avatar Jul 13 '22 01:07 hongwen000

@hongwen000 Nr 2 😃

ALIENQuake avatar Jul 13 '22 08:07 ALIENQuake

i suggest @hongwen000 create a .vscode folder with a settings.json in the root of the repo containing:

{
  "powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1"
}

an have you repo specific PSScriptAnalyzerSettings.psd1 in the root of the repo.

falkheiland avatar Aug 24 '22 07:08 falkheiland

One more way of making PSScriptAnalyzer settings sync across devices: OneDrive + environmental variables.

"powershell.scriptAnalysis.settingsPath": "%OneDriveConsumer%\\_Share\\AppData\\PowerShell\\Settings-PSScriptAnalyzer.psd1"

Edit: Never mind, does not work.

o-l-a-v avatar Nov 11 '22 13:11 o-l-a-v