Skip to content

VBC-032: css-important

warning

Category: core
Analysis: Regex (line by line)
File types: .css, .scss, .less
Scope: source code only, ignoring anything inside strings and comments
Tags: style css

What it reports

Global '!important' detected in CSS at line {line}. This breaks the cascade.

Flagged

css
.card { color: red !important; }

Not flagged

css
.card { color: red; }

Pattern

regex
!important

Released under the MIT License.