**Summary of the new feature** I'd like to see notifications/warnings/info messages about conventional comments detected in code, e.g. ``` # FIXME : something that does not work properly in some conditions # TODO - unfinished work # HACK bad place, dirty trick ``` Also we export code analysis results to SonarQube and since there is no such rule, I cant see all the technical debt mentioned in the whole codebase. **Proposed technical implementation details (optional)** A rule needs to be created. TODO comments should have _info/hint_ status, FIXME and others may have _warning_ status. Here is what I see in SonarQube for C# repo  I'd like to have the same information for Powershell repo. Related links * [CWE Suspicious comments](https://cwe.mitre.org/data/definitions/546) * Docs on sonar scanner for .net rules: [fixme](https://github.com/SonarSource/sonar-dotnet/blob/master/analyzers/rspec/cs/S1134.html), [todo](https://github.com/SonarSource/sonar-dotnet/blob/master/analyzers/rspec/cs/S1135.html) **What is the latest version of PSScriptAnalyzer at the point of writing** 1.23.0