.markdownlint-cli2.jsonc 599 B

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