-
Uladzimir Havenchyk authored
* lint: add stylelint support for emotion components * drop comment * fix pattern order * Use one version of typescript * use :focus not :outline * Use the logical CSS property "inset-inline-start:" (not "inline-start:" which doesn't exist) as replacement for the physical css property "left:" * Use mb-color-focus for focus color * Drop dead code --------- Co-authored-by:
Raphael Krut-Landau <raphael.kl@gmail.com>
Uladzimir Havenchyk authored* lint: add stylelint support for emotion components * drop comment * fix pattern order * Use one version of typescript * use :focus not :outline * Use the logical CSS property "inset-inline-start:" (not "inline-start:" which doesn't exist) as replacement for the physical css property "left:" * Use mb-color-focus for focus color * Drop dead code --------- Co-authored-by:
Raphael Krut-Landau <raphael.kl@gmail.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.stylelintrc.json 909 B
{
"extends": ["stylelint-config-standard", "stylelint-config-css-modules"],
"rules": {
"alpha-value-notation": null,
"color-function-notation": null,
"custom-property-pattern": 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
}
}