.stylelintrc.js 527 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. extends: ["stylelint-config-standard", "stylelint-config-prettier"],
  3. // add your custom config here
  4. // https://stylelint.io/user-guide/configuration
  5. rules: {
  6. "at-rule-no-unknown": [
  7. true,
  8. {
  9. ignoreAtRules: [
  10. "extends",
  11. "apply",
  12. "variants",
  13. "responsive",
  14. "screen",
  15. "mixin",
  16. "include",
  17. ],
  18. },
  19. ],
  20. "declaration-block-trailing-semicolon": null,
  21. "no-descending-specificity": null,
  22. },
  23. }