draggable/examples/.stylelintrc
2020-10-10 17:34:09 -04:00

33 lines
920 B
Plaintext

{
"extends": [
"stylelint-config-shopify/prettier"
],
"rules": {
"shopify/content-no-strings": true,
"scss/at-if-no-null": null,
"scss/partial-no-import": null,
"color-no-hex": null,
"comment-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
ignoreShorthands: ["/^grid.*/"],
},
],
"declaration-property-value-blacklist": null,
"font-weight-notation": null,
"function-url-scheme-whitelist": null,
"no-unknown-animations": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-class": 4,
"selector-max-id": 1,
"selector-max-type": 2,
"selector-max-combinators": 3,
"selector-max-compound-selectors": 4,
"selector-max-specificity": "1,5,1",
"selector-no-qualifying-type": null
}
}