246a6f9d13
Note that these changes were done automatically, using `gulp lint --fix`. With this rule, we'll thus enforce a *consistent* formatting of zero-lengths in our CSS files. Please find additional details about the Stylelint rule at https://stylelint.io/user-guide/rules/length-zero-no-unit
18 lines
235 B
Plaintext
18 lines
235 B
Plaintext
{
|
|
"plugins": [
|
|
"stylelint-prettier"
|
|
],
|
|
|
|
"extends": [
|
|
"stylelint-prettier/recommended"
|
|
],
|
|
|
|
|
|
"rules": {
|
|
"block-no-empty": true,
|
|
"length-zero-no-unit": [true, {
|
|
ignore: ["custom-properties"]
|
|
}],
|
|
},
|
|
}
|