1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 18:10:33 -04:00
jarv.is/.stylelintrc
2020-05-14 13:36:27 -04:00

18 lines
463 B
Plaintext

{
"extends": [
"stylelint-config-sass-guidelines",
"stylelint-prettier/recommended"
],
"plugins": ["stylelint-prettier"],
"rules": {
"color-hex-length": "long",
"function-url-quotes": null,
"max-nesting-depth": 6,
"order/properties-alphabetical-order": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"shorthand-property-no-redundant-values": null
}
}