This rule checks for usage of stylelint-disable tags.

Noncompliant Code Example

/* stylelint-disable no-browser-hacks */
h1 {
  _color: green;
}
...