While running Stylelint against CSS files, every file has an output with the following error. It is odd that the error appears on the first line/character of each file.
1:1 x Unknown rule declaration-property-value-blacklist
While running Stylelint against CSS files, every file has an output with the following error. It is odd that the error appears on the first line/character of each file.
1:1 x Unknown rule declaration-property-value-blacklist
Stylelint shows the "Unknown rule ..." problem when it encounters a rule in the configuration object that it doesn't recognise.
The declaration-property-value-blacklist
rule was removed in version 14.0.0 of Stylelint. It was replaced by the declaration-property-value-disallowed-list
rule. You should update your configuration object to use that rule instead.
There is a compatibility error between Stylelint 14.x and the stylelint-config-airbnb plugin. https://issuemode.com/issues/airbnb/css/10818973