1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 14:38:30 -04:00
jarv.is/.stylelintrc
Jake Jarvis 363b4edf1c
shift asset processing to webpack (#424)
also migrated SASS to latest syntax (via dart-sass) and vastly simplified light/dark theme logic
2021-06-19 17:19:01 -04:00

27 lines
648 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/order": null,
"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
}
}