I am trying to adjust my property-blacklist in stylelint
and want to provide a message to each property that is blacklisted, like I did below with the top-property
.
"property-blacklist": [
"top",
{
"message": "Use translateY instead."
}
]
If I now just want to simply add a custom message for the left-property, then how do I do this? The following configuration does not work:
"property-blacklist": [
[
"top",
{
"message": "Use translateY instead."
}
],
[
"left",
{
"message": "Use translateX instead."
}
]
]