Compare commits

...

4 Commits

Author SHA1 Message Date
Ethan Neff
070822bab5
Merge 0518f21221 into 40337cb8f7 2025-03-30 13:20:34 +11: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
Ethan Neff
0518f21221
docs: update pnpm example with caching 2024-12-18 17:55:40 +08:00
3 changed files with 6 additions and 4 deletions

View File

@ -4,7 +4,7 @@
"owner": "eslint-compact", "owner": "eslint-compact",
"pattern": [ "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, "file": 1,
"line": 2, "line": 2,
"column": 3, "column": 3,

View File

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

View File

@ -256,9 +256,11 @@ steps:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: pnpm/action-setup@v2 - uses: pnpm/action-setup@v4
name: Install pnpm
with: with:
version: 6.32.9 version: 9
run_install: false
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: '14' node-version: '14'