Fix up some CSS things stylelint was complaining about

And also disable a load of rules that feel like they're probably
causing more headaches than they fix.
This commit is contained in:
David Baker 2019-04-09 15:03:13 +01:00
parent 564a9838b0
commit eb6f3f6008
13 changed files with 126 additions and 118 deletions

View file

@ -3,5 +3,13 @@ module.exports = {
"rules": {
"indentation": 4,
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"length-zero-no-unit": null,
"rule-empty-line-before": null,
"color-hex-length": null,
"max-empty-lines": null,
"number-no-trailing-zeros": null,
"number-leading-zero": null,
"selector-list-comma-newline-after": null,
}
}