1{ 2 "problemMatcher": [ 3 { 4 "owner": "sphinx-problem-matcher", 5 "pattern": [ 6 { 7 "regexp": "^(.*):(\\d+):\\s+(\\w*):\\s+(.*)$", 8 "file": 1, 9 "line": 2, 10 "severity": 3, 11 "message": 4 12 } 13 ] 14 }, 15 { 16 "owner": "sphinx-problem-matcher-loose", 17 "pattern": [ 18 { 19 "_comment": "A bit of a looser pattern, doesn't look for line numbers, just looks for file names relying on them to start with / and end with .rst", 20 "regexp": "(\/.*\\.rst):\\s+(\\w*):\\s+(.*)$", 21 "file": 1, 22 "severity": 2, 23 "message": 3 24 } 25 ] 26 }, 27 { 28 "owner": "sphinx-problem-matcher-loose-no-severity", 29 "pattern": [ 30 { 31 "_comment": "Looks for file names ending with .rst and line numbers but without severity", 32 "regexp": "^(.*\\.rst):(\\d+):(.*)$", 33 "file": 1, 34 "line": 2, 35 "message": 3 36 } 37 ] 38 } 39 ] 40}