markdownlint-problem-matcher.json 406 B

1234567891011121314151617
  1. {
  2. "problemMatcher": [
  3. {
  4. "owner": "markdownlint",
  5. "pattern": [
  6. {
  7. "regexp": "^([^:]*):(\\d+):?(\\d+)?\\s([\\w-\\/]*)\\s(.*)$",
  8. "file": 1,
  9. "line": 2,
  10. "column": 3,
  11. "code": 4,
  12. "message": 5
  13. }
  14. ]
  15. }
  16. ]
  17. }