HookyQR / VSCodeBeautify

Enable js-beautify (https://github.com/beautify-web/js-beautify) in VS Code
MIT License
607 stars 178 forks source link

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

Open rolf-yoast opened 2 years ago

rolf-yoast commented 2 years ago

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