Last active
June 21, 2020 11:35
-
-
Save cdupuis/ea05b10ded8ee1c8515f1f896889c527 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "clj-kondo", | |
"severity": "error", | |
"report": "error", | |
"pattern": [ | |
{ | |
"regexp": "[\\s\\./]*([^:]*):([0-9]*):([0-9]*):\\s(.*):\\s(.*)", | |
"groups": { | |
"path": 1, | |
"line": 2, | |
"column": 3, | |
"severity": 4, | |
"message": 5 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment