.stylelintrc.json 396 B

1234567891011121314151617
  1. {
  2. "extends": [
  3. "stylelint-config-recommended",
  4. "stylelint-config-styled-components",
  5. "stylelint-config-recess-order"
  6. ],
  7. "rules": {
  8. "function-no-unknown": null,
  9. "font-family-no-missing-generic-family-keyword": null
  10. },
  11. "overrides": [
  12. {
  13. "files": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"],
  14. "customSyntax": "@stylelint/postcss-css-in-js"
  15. }
  16. ]
  17. }