Compare commits

...

4 Commits

Author SHA1 Message Date
Mohammed Alduhamshi
8597cb3b12 Merge dcf34b3f5e into 40337cb8f7 2025-03-26 02:18:26 +03:00
fregante
40337cb8f7 Add support for indented eslint output (#1245) 2025-03-24 16:12:02 -05:00
Flo Edelmann
1ccdddc9b8 Make eslint-compact matcher compatible with Stylelint (#98) 2025-03-24 12:48:16 -05:00
Mohammed Alduhamshi
dcf34b3f5e Create devcontainer.json 2025-03-24 16:02:43 +03:00
3 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {}
}

View File

@@ -4,7 +4,7 @@
"owner": "eslint-compact",
"pattern": [
{
"regexp": "^(.+):\\sline\\s(\\d+),\\scol\\s(\\d+),\\s(Error|Warning|Info)\\s-\\s(.+)\\s\\((.+)\\)$",
"regexp": "^(.+):\\sline\\s(\\d+),\\scol\\s(\\d+),\\s([Ee]rror|[Ww]arning|[Ii]nfo)\\s-\\s(.+)\\s\\((.+)\\)$",
"file": 1,
"line": 2,
"column": 3,

View File

@@ -4,7 +4,7 @@
"owner": "eslint-stylish",
"pattern": [
{
"regexp": "^([^\\s].*)$",
"regexp": "^\\s*([^\\s].*)$",
"file": 1
},
{