prettier-plugin-organize-attributes - npm explorer
`

---

$3

`json
// .prettierrc
{
"plugins": ["prettier-plugin-organize-attributes"],
}
`

`vue


`

`vue


`

---

$3

`json
// .prettierrc
{
"plugins": ["prettier-plugin-organize-attributes"],
"attributeGroups": ["$CODE_GUIDE"]
}
`

`html

other="other"
value="value"
type="type"
title="title"
src="src"
role="role"
name="name"
id="id"
href="href"
for="for"
data-test="test"
class="class"
aria-test="test"
alt="alt"
>
`

`html

class="class"
id="id"
name="name"
data-test="test"
src="src"
for="for"
type="type"
href="href"
value="value"
title="title"
alt="alt"
role="role"
aria-test="test"
other="other"
>
``