Skip to content

Commit 537e014

Browse files
authored
feat(problem-matchers): Add warnings to problem matchers (#288)
1 parent 19e0c90 commit 537e014

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

.github/cfn-lint.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,26 @@
44
"owner": "cfn-lint",
55
"pattern": [
66
{
7-
"regexp": "^([EWI](\\d{4}))\\s(.+)$",
8-
"code": 1,
9-
"message": 3
7+
"regexp": "^(([E](\\d{4}))\\s(.+))$",
8+
"message": 1,
9+
"code": 3
10+
},
11+
{
12+
"regexp": "^(\\S+):(\\d+):(\\d+)$",
13+
"file": 1,
14+
"line": 2,
15+
"column": 3
16+
}
17+
]
18+
},
19+
{
20+
"owner": "cfn-lint-warnings",
21+
"severity": "warning",
22+
"pattern": [
23+
{
24+
"regexp": "^(([WI](\\d{4}))\\s(.+))$",
25+
"message": 1,
26+
"code": 3
1027
},
1128
{
1229
"regexp": "^(\\S+):(\\d+):(\\d+)$",

0 commit comments

Comments
 (0)