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
CSS custom properties introduced in sveltejs/rfcs#13 currently broke eslint cheking.
<input --width="{numLength * 0.875 + 3}rem">
Will fire: '--width' is not a valid attribute name ValidationError'
The text was updated successfully, but these errors were encountered:
Custom properties only work on components, not elements, so this is kind of expected.
Sorry, something went wrong.
Yeah, this isn't a valid Svelte component. That's an error from the compiler that you can also see if you paste that into the REPL.
No branches or pull requests
CSS custom properties introduced in sveltejs/rfcs#13 currently broke eslint cheking.
<input --width="{numLength * 0.875 + 3}rem">
Will fire: '--width' is not a valid attribute name ValidationError'
The text was updated successfully, but these errors were encountered: