Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Extract pep257 docstring errors #14

Merged
merged 1 commit into from
Feb 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/linter-flake8.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class LinterFlake8 extends Linter

# A regex pattern used to extract information from the executable's output.
regex:
'(.*?):(?<line>\\d+):(?<col>\\d+): (?<message>((?<error>E11|E9)|(?<warning>W|E|F4|F84|N*|C)|F)\\d+ .*?)\r?\n'
'(.*?):(?<line>\\d+):(?<col>\\d+): (?<message>((?<error>E11|E9)|(?<warning>W|E|F4|F84|N*|C|D)|F)\\d+ .*?)\r?\n'

constructor: (editor)->
super(editor)
Expand Down