Skip to content

Commit

Permalink
Add support for Vale suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
eread committed Aug 31, 2023
1 parent 0cd7c5a commit e4565d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Vale(Linter):
cmd = ('vale', '--no-wrap', '${args}', '${temp_file}')
regex = (
r'(?P<line>\d+):(?P<col>\d+)\s{2,}'
r'((?P<error>error)|(?P<warning>warning))\s{2,}'
r'(?P<error_type>\S+)\s{2,}'
r'(?P<message>.+?)(?=$)'
)
multiline = True
Expand Down

0 comments on commit e4565d4

Please sign in to comment.