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"] } } ```