Repository for Powershell language plugin for Sonar.
Currently plug-in supports:
- Reporting of issues found by PSScriptAnalyzer
- Cyclomatic and cognitive complexity metrics (since version 0.3.0)
- Reporting number of lines of code and comment lines metrics (since version 0.3.2)
You can support this project and others via Paypal
- Download and install SonarQube
- Download plugin from the releases and copy it to sonarqube's extensions\plugins directory
- Start SonarQube and enable rules
- Install PSScriptAnalyzer into your build machine where you plan to run sonar scanner
Currently there is a possibility to override the following options either on server in the Administration tab or on the project configuration files:
- sonar.ps.tokenizer.skip - if set to true - skips tokenizer, which might be time consuming, defaults to false
- sonar.ps.file.suffixes - allows to specify which files should be detected as Powershell files, defaults to .ps1,.psm1,.psd1
- sonar.ps.executable - allows to specify powershell executable, defaults to powershell.exe (since version 0.3.0)
- sonar.ps.plugin.skip - if set to true - skips plugin in general, meaning that no sensors are run, defaults to false (since version 0.3.0)
- sonar.ps.tokenizer.timeout - maximum number of seconds to wait for tokenizer results, defaults to 3600 (since version 0.4.0)
Different plugin versions supports the following:
- 0.3.0 - Sonarqube version 6.3+ and PSScriptAnalyzer version 1.17.1 rules
- 0.2.2 - Sonarqube 5.6+ version and PSScriptAnalyzer version 1.17.1 rules