1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 06:37:17 -04:00
notes/node_modules/stylelint/lib/rules/unit-blacklist/README.md

97 lines
1.2 KiB
Markdown
Raw Normal View History

2017-03-09 13:16:08 -05:00
# unit-blacklist
Specify a blacklist of disallowed units.
```css
a { width: 100px; }
/** ↑
* These units */
```
## Options
`array|string`: `["array", "of", "units"]|"unit"`
Given:
```js
["px", "em", "deg"]
```
The following patterns are considered warnings:
```css
a { width: 100px; }
```
```css
a { font-size: 10em; }
```
```css
a { transform: rotate(30deg); }
```
The following patterns are *not* considered warnings:
```css
a { font-size: 1.2rem; }
```
```css
a { line-height: 1.2; }
```
```css
a { height: 100vmin; }
```
```css
a { animation: animation-name 5s ease; }
```
## Optional secondary options
### `ignoreProperties: { unit: ["property", "/regex/"] }`
Ignore units in the values of declarations with the specified properties.
For example, with `["px", "vmin"]`.
Given:
```js
{
"px": [ "font-size", "/^border/" ],
"vmin": [ "width" ]
}
```
The following patterns are *not* considered warnings:
```css
a { font-size: 13px; }
```
```css
a { border-bottom-width: 6px; }
```
```css
a { width: 100vmin; }
```
The following patterns are considered warnings:
```css
a { line-height: 12px; }
```
```css
a { -moz-border-radius-topright: 40px; }
```
```css
a { height: 100vmin; }
```