stylelint-matcher.json 383 B

123456789101112131415161718192021
  1. {
  2. "problemMatcher": [
  3. {
  4. "owner": "stylelint",
  5. "pattern": [
  6. {
  7. "regexp": "^([^\\s].*)$",
  8. "file": 1
  9. },
  10. {
  11. "regexp": "^\\s+((\\d+):(\\d+))?\\s+(✖|×)\\s+(.*)\\s{2,}(.*)$",
  12. "line": 2,
  13. "column": 3,
  14. "message": 5,
  15. "code": 6,
  16. "loop": true
  17. }
  18. ]
  19. }
  20. ]
  21. }