stylelint.config.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. module.exports = {
  2. root: true,
  3. extends: [
  4. "stylelint-config-standard",
  5. "stylelint-config-html/vue",
  6. "stylelint-config-recess-order"
  7. ],
  8. plugins: ["stylelint-order", "stylelint-prettier", "stylelint-scss"],
  9. overrides: [
  10. {
  11. files: ["**/*.(css|html|vue)"],
  12. customSyntax: "postcss-html"
  13. },
  14. {
  15. files: ["*.scss", "**/*.scss"],
  16. customSyntax: "postcss-scss",
  17. extends: [
  18. "stylelint-config-standard-scss",
  19. "stylelint-config-recommended-vue/scss"
  20. ]
  21. }
  22. ],
  23. rules: {
  24. "selector-class-pattern": null,
  25. "keyframes-name-pattern": null,
  26. "no-descending-specificity": null,
  27. "scss/dollar-variable-pattern": null,
  28. "selector-pseudo-class-no-unknown": [
  29. true,
  30. {
  31. ignorePseudoClasses: ["deep", "global"]
  32. }
  33. ],
  34. "selector-pseudo-element-no-unknown": [
  35. true,
  36. {
  37. ignorePseudoElements: ["v-deep", "v-global", "v-slotted"]
  38. }
  39. ],
  40. "at-rule-no-unknown": [
  41. true,
  42. {
  43. ignoreAtRules: [
  44. "tailwind",
  45. "apply",
  46. "variants",
  47. "responsive",
  48. "screen",
  49. "function",
  50. "if",
  51. "each",
  52. "include",
  53. "mixin",
  54. "use"
  55. ]
  56. }
  57. ],
  58. "rule-empty-line-before": [
  59. "always",
  60. {
  61. ignore: ["after-comment", "first-nested"]
  62. }
  63. ],
  64. "unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
  65. "order/order": [
  66. [
  67. "dollar-variables",
  68. "custom-properties",
  69. "at-rules",
  70. "declarations",
  71. {
  72. type: "at-rule",
  73. name: "supports"
  74. },
  75. {
  76. type: "at-rule",
  77. name: "media"
  78. },
  79. "rules"
  80. ],
  81. { severity: "warning" }
  82. ]
  83. },
  84. ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx"]
  85. }