#unit-whitelist

Specify a whitelist of allowed units.

指定一个所允许的单位的白名单。

a { width: 100px; }
/**           ↑
 *  These units */

#Options

array|string: ["array", "of", "units"]|"unit"

Given:

给出:

["px", "em", "deg"]

The following patterns are considered warnings:

以下模式被认为是个警告:

a { width: 100%; }
a { font-size: 10rem; }
a { animation: animation-name 5s ease; }

The following patterns are not considered warnings:

以下模式正常:

a { font-size: 1.2em; }
a { line-height: 1.2; }
a { height: 100px; }
a { height: 100PX; }
a { transform: rotate(30deg); }

#Optional secondary options

#ignoreProperties: { unit: ["property", "/regex/"] }

Ignore units in the values of declarations with the specified properties.

忽略指定属性的单位。

For example, with ["px", "em"].

比如,["px", "em"]

Given:

给出:

{
  "rem": [ "line-height", "/^border/" ],
  "%": [ "width" ]  
}

The following patterns are considered warnings:

以下模式被认为是个警告:

a { margin: 0 20rem; }
a { -moz-border-radius-topright: 20rem; }
a { height: 100%; }

The following patterns are not considered warnings:

以下模式正常:

a { line-height: 0.1rem; }
a { border-bottom-width: 6rem; }
a { width: 100%; }