I am trying to add the Drupal Coding standards in phpcs.
I can run the Drupal Standards with
phpcs --standard=Drupal
Now I want to execute the same standards with Sonar.
In Sonar I can add the keys of all the rulesets in the rules.xml
extension, but how can I get all the keys for these rules?
I can identify some of the keys using the *sniff.php
files and the folder structure but I'm not sure I am getting all of them.
Can anyone suggest an automated way to get all the rules available in a particular standard?
You have to identify all the sniffs referenced by the Drupal standard and create a profile in Sonar (through the Web UI) that references them all. Then you activate this profile as the default one, and you're ready for an analysis.