Skip to content

Commit

Permalink
Add support for some plugin codes
Browse files Browse the repository at this point in the history
See rbialon#6
Adds support for flake8-annotations, flake8-bandit, flake8-docstrings and flake8-import-order
  • Loading branch information
silasary authored Dec 31, 2021
1 parent f8c29dc commit 53af0ef
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/flake8-warning-problem-matcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
"severity": "warning",
"pattern": [
{
"regexp": "^([^:]+):(\\d+):(\\d+):\\s+([CFNW]\\d+\\s+.+)$",
"regexp": "^([^:]+):(\\d+):(\\d+):\\s+([BCDIFNSW]\\d+\\s+.+)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
},
{
"regexp": "^([^:]+):(\\d+):(\\d+):\\s+(ANN\\d+\\s+.+)$",
"file": 1,
"line": 2,
"column": 3,
Expand Down

0 comments on commit 53af0ef

Please sign in to comment.