-
Ryan Laurie authored
* add base color palette * add some more comments * fix formatting and color copy-pasta errors * ignore existing bad base color usage --------- Co-authored-by:
Oisin Coveney <oisin@metabase.com>
Ryan Laurie authored* add base color palette * add some more comments * fix formatting and color copy-pasta errors * ignore existing bad base color usage --------- Co-authored-by:
Oisin Coveney <oisin@metabase.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.stylelintrc.json 942 B
{
"extends": ["stylelint-config-standard", "stylelint-config-css-modules"],
"rules": {
"alpha-value-notation": null,
"color-function-notation": null,
"custom-property-pattern": null,
"hue-degree-notation": null,
"import-notation": "string",
"media-feature-range-notation": "prefix",
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
"value-keyword-case": null,
"declaration-block-no-redundant-longhand-properties": null,
"shorthand-property-no-redundant-values": null,
"declaration-block-no-duplicate-properties": [
true,
{ "ignoreProperties": ["composes"] }
],
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"no-empty-source": null,
"font-family-no-missing-generic-family-keyword": null
}
}