Skip to content

Instantly share code, notes, and snippets.

@PoisonousJohn
Created January 18, 2019 14:03
Show Gist options
  • Save PoisonousJohn/b3d81f1d6f3c150dde3df71f2f21b4c6 to your computer and use it in GitHub Desktop.
Save PoisonousJohn/b3d81f1d6f3c150dde3df71f2f21b4c6 to your computer and use it in GitHub Desktop.
vscode pylint problem matcher
{
"problemMatcher": {
"owner": "python",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(W|E).+:\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment