From 48fd069003c226377fc8f8f696d164515e44340a Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 24 Sep 2020 12:06:21 -0700 Subject: [PATCH] build: update stylelint remove usages of the term blacklist Update the stylelint config file to use declaration-property-value-disallowed-list function-url-scheme-disallowed-list --- .stylelintrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 4b5cf511c765..7bf02540af02 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -35,7 +35,7 @@ "function-comma-space-before": "never", "function-name-case": "lower", "function-url-quotes": "always", - "function-url-scheme-blacklist": ["data"], + "function-url-scheme-disallowed-list": ["data"], "function-whitespace-after": "always", "number-leading-zero": "always", @@ -67,7 +67,7 @@ "declaration-block-semicolon-newline-before": "never-multi-line", "declaration-block-semicolon-newline-after": "always-multi-line", "declaration-colon-space-after": "always-single-line", - "declaration-property-value-blacklist": [ + "declaration-property-value-disallowed-list": [ {"/.*/": ["initial"]}, {"message": "The `initial` value is not supported in IE."} ],