1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 16:08:26 -04:00
jarv.is/.stylelintrc
2020-07-04 19:29:18 -04:00

26 lines
623 B
Plaintext

{
"extends": [
"stylelint-config-sass-guidelines",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features",
"stylelint-prettier"
],
"rules": {
"color-hex-length": "long",
"max-nesting-depth": 6,
"order/properties-alphabetical-order": null,
"plugin/no-unsupported-browser-features": [true, {
"severity": "warning",
"ignore": [
"flexbox"
]
}],
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"shorthand-property-no-redundant-values": null
}
}