Skip to content
/ malva Public

Configurable, smart and fast CSS, SCSS, Sass and Less formatter with dprint integration.

License

Notifications You must be signed in to change notification settings

g-plane/malva

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 6, 2025
fb773e4 Â· Mar 6, 2025
Feb 26, 2025
Oct 10, 2023
Oct 21, 2024
Mar 6, 2025
Mar 6, 2025
Mar 6, 2025
Oct 11, 2023
Sep 16, 2023
Aug 8, 2024
Mar 6, 2025
Jun 30, 2024
Sep 4, 2023
Mar 6, 2025
Sep 14, 2023

Repository files navigation

🌷 Malva

Malva is a configurable, smart and fast CSS, SCSS, Sass and Less formatter.

GitHub Downloads (specific asset, latest release)

Why?

Configurable

Malva is configurable. It provides several configuration options so you can control the code style as you want.

Given the example below:

button.disabled, button:disabled {}

This selector is short enough to be put on single line, so Malva will put it on a single line by default, instead of forcing it to be splitted into multiple lines.

However, if you prefer putting into multiple lines, you can configure it.

Smart

Given the example below:

button.disabled/*please use pseudo class as possible*/,button:disabled {}

There're comments inside selector. Some formatters will fail to format it, but Malva will format as:

button.disabled /*please use pseudo class as possible*/, button:disabled {}

Try this on playground.

Also, thanks to the Raffia parser, Malva supports cutting edge CSS syntaxes like @container.

Support (indented) Sass

Malva supports indentation-based Sass, not just SCSS.

Quick Start

Try It Online

If you just want a quick try, you can try with the online playground.

dprint

We've provided dprint integration.

Run the command below to add plugin:

dprint config add g-plane/malva

After adding the dprint plugin, update your dprint.json and add configuration:

{
  // ...
  "plugins": [
    "https://plugins.dprint.dev/g-plane/malva-v0.11.2.wasm"
  ],
  "malva": {
    // Malva config comes here
  }
}

You can also read dprint CLI documentation for using dprint to format files.

Configuration

Please refer to Configuration.

FAQ

I don't like some of code styles. Can I propose to change it?

Malva is not opinionated and is configurable, and we accept different code styles then switch them with configuration. But before proposing a code style change, it's better to open a new issue or discussion.

My CSS code is in HTML, Vue, Svelte and Astro files. How can I format them?

If you're using dprint, you can use markup_fmt which provides a dprint plugin, then you can use these two plugins together.

Credit

Tests come from Prettier.

License

MIT License

Copyright (c) 2023-present Pig Fang