.markdownlint-cli2.jsonc 740 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "config": {
  3. "default": true,
  4. "blanks-around-fences": false,
  5. "blanks-around-lists": false,
  6. "first-line-heading": false,
  7. "line-length": false,
  8. "no-hard-tabs": false,
  9. "no-inline-html": {
  10. "allowed_elements": ["br", "img", "kbd", "translations", "meta"]
  11. },
  12. "no-multiple-blanks": {
  13. "maximum": 2
  14. },
  15. "no-trailing-spaces": true,
  16. "table-column-style": false,
  17. "ul-indent": false,
  18. "ul-style": {
  19. "style": "consistent"
  20. }
  21. },
  22. // Markdown files to lint (previously the '**/*.md' CLI argument)
  23. "globs": [
  24. "**/*.md"
  25. ],
  26. "ignores": [
  27. "**/node_modules/**",
  28. "extensions/**",
  29. "lib/marienfressinaud/**",
  30. "lib/phpgt/**",
  31. "lib/phpmailer/**",
  32. "lib/simplepie/**",
  33. "p/scripts/vendor/**",
  34. "vendor/**"
  35. ]
  36. }