You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears that stylelint is parsing CSS-In-JS wrong. It can't handle variable interpolation within template literals, e.g.
constTestHeader=style.h1` color: ${myColor};`;
The above would break because it doesn't like the camel casing of the variable. Stylelint has been disabled until further notice by adding the ignoreFiles declaration into the .stylelintrc.json settings file.
The text was updated successfully, but these errors were encountered:
Appears that stylelint is parsing CSS-In-JS wrong. It can't handle variable interpolation within template literals, e.g.
The above would break because it doesn't like the camel casing of the variable. Stylelint has been disabled until further notice by adding the
ignoreFiles
declaration into the.stylelintrc.json
settings file.The text was updated successfully, but these errors were encountered: