Disable no-shorthand for certain props for better readability

This commit is contained in:
tusooa 2023-01-13 00:37:42 -05:00
commit a28032fa58
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
4 changed files with 20 additions and 10 deletions

View file

@ -21,6 +21,21 @@
"import-notation": null,
"custom-property-pattern": null,
"keyframes-name-pattern": null,
"scss/operator-no-newline-after": null
"scss/operator-no-newline-after": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"grid-template",
"margin",
"padding",
"border",
"border-width",
"border-style",
"border-color",
"border-radius"
]
}
]
}
}