Pattern: Use of unknown function
Issue: -
Considers functions defined in the CSS Specifications to be known.
This rule ignores double-dashed custom functions, e.g. --custom-function()
.
The following patterns are considered violations:
a { transform: unknown(1); }
The following patterns are not considered violations:
a { transform: scale(1); }
a { transform: --custom-function(1); }