stylelint
Version:
Modern CSS linter
56 lines (39 loc) • 621 B
Markdown
# unit-whitelist
Specify a whitelist of allowed units.
```css
a { width: 100px; }
/** ↑
* These units */
```
## Options
`array`: `"["array", "of", "units"]"`
Given:
```js
["px", "em", "deg"]
```
The following patterns are considered warnings:
```css
a { width: 100%; }
```
```css
a { font-size: 10rem; }
```
```css
a { animation: animation-name 5s ease; }
```
The following patterns are *not* considered warnings:
```css
a { font-size: 1.2em; }
```
```css
a { line-height: 1.2; }
```
```css
a { height: 100px; }
```
```css
a { height: 100PX; }
```
```css
a { transform: rotate(30deg); }
```