VSCodeBeautify
VSCodeBeautify copied to clipboard
Tailwind colon in css lines shouldn't have a space.
- VS Code Version: 1.63.2
- beautify Version: v1.5.0
Provide the settings you use: VS Code:
"beautify.language": {
"js": {
"type": [
"javascript",
"json",
"jsonc"
],
"filename": [
".jshintrc",
".jsbeautifyrc"
]
},
"css": [
"less",
"css",
"scss"
],
"html": [
"htm",
"html"
]
},
Expected results
.button {
@apply hover:bg-amber-100;
}
Actual results
.button {
@apply hover: bg-amber-100;
}