From 11a09814b29f51630541e3c77ccc6eced95842a4 Mon Sep 17 00:00:00 2001 From: Matt Wang Date: Sun, 5 Jul 2020 03:01:12 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7943cb3..29ed267 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Since [stylelint 9.7.0](https://github.com/stylelint/stylelint/blob/9.7.0/CHANGE Simply add a `"rules"` key to your config, then add your overrides and additions there. -For example, to change the `at-rule-no-unknown` rule to use its `ignoreAtRules` option, turn off the `block-no-empty` rule, and add the `unit-whitelist` rule: +For example, to change the `at-rule-no-unknown` rule to use its `ignoreAtRules` option, turn off the `block-no-empty` rule, and add the `unit-allowed-list` rule: ```json { @@ -57,7 +57,7 @@ For example, to change the `at-rule-no-unknown` rule to use its `ignoreAtRules` } ], "block-no-empty": null, - "unit-whitelist": ["em", "rem", "s"] + "unit-allowed-list": ["em", "rem", "s"] } } ```