Set-up Problem Matchers (#18598)

This commit is contained in:
Yamagishi Kazutoshi
2022-06-17 05:09:43 +09:00
committed by GitHub
parent b37825f2e2
commit e789b8d4c1
2 changed files with 33 additions and 0 deletions

21
.github/stylelint-matcher.json vendored Normal file
View File

@ -0,0 +1,21 @@
{
"problemMatcher": [
{
"owner": "stylelint",
"pattern": [
{
"regexp": "^([^\\s].*)$",
"file": 1
},
{
"regexp": "^\\s+((\\d+):(\\d+))?\\s+(✖|×)\\s+(.*)\\s{2,}(.*)$",
"line": 2,
"column": 3,
"message": 5,
"code": 6,
"loop": true
}
]
}
]
}