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
Currently HTML selectors are reformatted to use single quotes when quotes is configured with preferSingle.
I think this should be configurable independently.
div[data-demo="value"] {
// ...
}
is reformatted to
div[data-demo='value'] {
// ...
}
The text was updated successfully, but these errors were encountered:
Currently HTML selectors are reformatted to use single quotes when
quotes
is configured withpreferSingle
.I think this should be configurable independently.
is reformatted to
The text was updated successfully, but these errors were encountered: