.markdownlint.json 927 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "default": false,
  3. "ul-style": true,
  4. "list-indent": true,
  5. "ul-start-left": true,
  6. "ul-indent": true,
  7. "no-trailing-spaces": true,
  8. "no-hard-tabs": true,
  9. "no-reversed-links": true,
  10. "no-multiple-blanks": true,
  11. "no-missing-space-atx": true,
  12. "no-multiple-space-atx": true,
  13. "no-missing-space-closed-atx": true,
  14. "no-multiple-space-closed-atx": true,
  15. "blanks-around-headings": true,
  16. "heading-start-left": true,
  17. "no-duplicate-heading": {
  18. "siblings_only": true
  19. },
  20. "single-h1": {
  21. "level": 1
  22. },
  23. "no-multiple-space-blockquote": true,
  24. "ol-prefix": {
  25. "style": "one_or_ordered"
  26. },
  27. "list-marker-space": true,
  28. "blanks-around-fences": true,
  29. "blanks-around-lists": true,
  30. "no-bare-urls": true,
  31. "hr-style": true,
  32. "no-space-in-emphasis": true,
  33. "no-space-in-code": true,
  34. "no-space-in-links": true,
  35. "fenced-code-language": true,
  36. "no-empty-links": true,
  37. "no-alt-text": true
  38. }