stylelint-plugin-use-baseline 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# stylelint-plugin-use-baseline
|
|
2
2
|
|
|
3
|
-
[![npm version][npm-version-img]][npm] [![npm downloads last month][npm-downloads-img]][npm]
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
[![npm version][npm-version-img]][npm] [![npm downloads last month][npm-downloads-img]][npm]
|
|
6
4
|
|
|
7
5
|
Disallow CSS features not in [Baseline](https://web.dev/baseline).
|
|
8
6
|
|
|
@@ -405,7 +403,10 @@ Given:
|
|
|
405
403
|
|
|
406
404
|
```json
|
|
407
405
|
{
|
|
408
|
-
"plugin/use-baseline": [
|
|
406
|
+
"plugin/use-baseline": [
|
|
407
|
+
true,
|
|
408
|
+
{ "available": 2021, "ignoreUnits": ["svh", "/^dv/"] }
|
|
409
|
+
]
|
|
409
410
|
}
|
|
410
411
|
```
|
|
411
412
|
|