.markdownlint-cli2.jsonc 549 B

12345678910111213141516171819202122232425262728
  1. {
  2. "config": {
  3. "extends": "@electron/lint-roller/configs/markdownlint.json",
  4. "link-image-style": {
  5. "autolink": false,
  6. "shortcut": false
  7. },
  8. "no-angle-brackets": true,
  9. "no-curly-braces": true,
  10. "no-inline-html": {
  11. "allowed_elements": [
  12. "br",
  13. "details",
  14. "img",
  15. "li",
  16. "summary",
  17. "ul",
  18. "unknown",
  19. "Tabs",
  20. "TabItem"
  21. ]
  22. },
  23. "no-newline-in-links": true
  24. },
  25. "customRules": [
  26. "@electron/lint-roller/markdownlint-rules/"
  27. ]
  28. }