eslint-plugin-dprint-integration icon indicating copy to clipboard operation
eslint-plugin-dprint-integration copied to clipboard

fix(deps): update dependency dprint-plugin-malva to ^0.3.0

Open renovate[bot] opened this issue 3 months ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
dprint-plugin-malva ^0.1.4 -> ^0.3.0 age adoption passing confidence

Release Notes

g-plane/malva (dprint-plugin-malva)

v0.3.0

Compare Source

Features

  • Optimized formatting grid and grid-template-* properties.

v0.2.0

Compare Source

Features

  • Added declarationOrder option for sorting declarations (a.k.a. properties) in qualified rule. For example, given with the following input:
div {
  height: 0;
  width: 0;
  display: flex;
}

It can format into:

div {
  display: flex;
  width: 0;
  height: 0;
}

For detail, please refer to documentation.

  • Added singleLineBlockThreshold option. This option can let you put a block into a single line if possible. This is especially useful for increasing readability when writing atomic CSS. For example:
.border-0 { border-width: 0px; }
.border-1 { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-3 { border-width: 3px; }
.border-4 { border-width: 4px; }
.border-5 { border-width: 5px; }

For detail, please refer to documentation.

v0.1.5

Compare Source

This release didn't change anything for end users.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Mar 24 '24 16:03 renovate[bot]