html.js 473 B

123456789101112131415161718192021222324252627
  1. "use strict"
  2. const extensions = [
  3. // https://github.com/Microsoft/vscode/blob/master/extensions/html/package.json
  4. ".html",
  5. ".htm",
  6. ".shtml",
  7. ".xhtml",
  8. ".xht",
  9. ".mdoc",
  10. ".jsp",
  11. ".asp",
  12. ".aspx",
  13. ".jshtm",
  14. ".volt",
  15. ".ejs",
  16. ".rhtml",
  17. ]
  18. module.exports = {
  19. overrides: [
  20. {
  21. files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
  22. customSyntax: "postcss-html",
  23. },
  24. ],
  25. }