Ignore section of code styling standards.

If you have a section of code that is not passing code style review and due to its nature, never can and you have made the determination that it is safe to ignore it:

<?php
 
// @codingStandardsIgnoreStart
 
 
{code or comments you want ignored.}
 
// @codingStandardsIgnoreEnd
?>

Avoid using it, but if you must, it is there if you need it.

section:

modules: