Fix cargo-fmt problem matcher

Turns out that it doesn't work because it only accepts single digit lines.
This commit is contained in:
Christopher Serr 2020-01-21 18:16:04 +01:00 committed by GitHub
parent 4db48f1364
commit 1a7e265421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
.github/rust.json vendored
View File

@ -33,7 +33,7 @@
"owner": "cargo-fmt",
"pattern": [
{
"regexp": "^(Diff in (\\S+)) at line (\\d):",
"regexp": "^(Diff in (\\S+)) at line (\\d+):",
"message": 1,
"file": 2,
"line": 3
@ -41,4 +41,4 @@
]
}
]
}
}