VSCodeBeautify icon indicating copy to clipboard operation
VSCodeBeautify copied to clipboard

Tailwind colon in css lines shouldn't have a space.

Open rolf-yoast opened this issue 4 years ago • 0 comments

  • 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;
}

rolf-yoast avatar Jan 31 '22 09:01 rolf-yoast