.stylelintrc.js 677 B

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