Specify a blacklist of disallowed units.
a { width: 100px; }
/** ↑
* These units */array: "["array", "of", "units"]"
Given:
["px", "em", "deg"]The following patterns are considered warnings:
a { width: 100px; }a { font-size: 10em; }a { transform: rotate(30deg); }The following patterns are not considered warnings:
a { font-size: 1.2rem; }a { line-height: 1.2; }a { height: 100vmin; }a { animation: animation-name 5s ease; }