529dbf9b65
These changes are part of https://phabricator.services.mozilla.com/D170496, and thanks to a Stylelint rule we can both enforce and fix this automatically; see also https://stylelint.io/user-guide/rules/selector-pseudo-element-colon-notation/
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
{
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
|
|
"rules": {
|
|
"prettier/prettier": true,
|
|
|
|
"block-no-empty": true,
|
|
"declaration-block-no-redundant-longhand-properties": true,
|
|
"declaration-property-value-disallowed-list": {
|
|
"float": ["inline-start", "inline-end"]
|
|
},
|
|
"length-zero-no-unit": [true, {
|
|
ignore: ["custom-properties"]
|
|
}],
|
|
"selector-pseudo-element-colon-notation": "double",
|
|
"shorthand-property-no-redundant-values": true,
|
|
},
|
|
}
|