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
Hi,
documentation Sass says https://sass-lang.com/documentation/at-rules/use/#private-members
"Sass makes it easy to define a private member by starting its name with either - or _ ."
but this regex ^(-?[a-z][a-z0-9]*)(-[a-z0-9]+)*$ does not support underscore in the beginning, only dash.
^(-?[a-z][a-z0-9]*)(-[a-z0-9]+)*$
I don't take the _ prefix as part of "kebab-case", I don't think it's related.
_
The text was updated successfully, but these errors were encountered:
Sorry for the late answer, but there has been discussion about this already before: #12
If you want it to change, please open a Pull Request with the change, and we can continue discussing it.
Sorry, something went wrong.
No branches or pull requests
Hi,
documentation Sass says https://sass-lang.com/documentation/at-rules/use/#private-members
"Sass makes it easy to define a private member by starting its name with either - or _ ."
but this regex
^(-?[a-z][a-z0-9]*)(-[a-z0-9]+)*$
does not support underscore in the beginning, only dash.I don't take the
_
prefix as part of "kebab-case", I don't think it's related.The text was updated successfully, but these errors were encountered: