We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to allow certain functions like color-mix, but it seems the current ignoreFunction option is not flexible enough.
color-mix
ignoreFunction
This should be flagged:
color: rgb(255 0 0);
This should be allowed:
color: color-mix(in srgb, var(--color-red), var(--color-blue));
Maybe have an ignoreFunctionRegex: /^color-mix$/ option?
ignoreFunctionRegex: /^color-mix$/
The text was updated successfully, but these errors were encountered:
I would also like this option, and you could probably re-use the same keyword, like for "ignoreValues"
Something like this:
"ignoreFunctions": { "": false, "/RegExp/[darken]": true, "/RegExp/[lighten]": true },
Sorry, something went wrong.
No branches or pull requests
I would like to allow certain functions like
color-mix
, but it seems the currentignoreFunction
option is not flexible enough.This should be flagged:
This should be allowed:
Maybe have an
ignoreFunctionRegex: /^color-mix$/
option?The text was updated successfully, but these errors were encountered: