Skip to content

Commit

Permalink
Revert line-* regexps
Browse files Browse the repository at this point in the history
  • Loading branch information
fleimgruber committed May 13, 2018
1 parent 864a7d2 commit c3f56b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flycheck-coala.el
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"A checker using coala.
See URL `https://coala.io'."
:command ("coala" "--format" "{line}:{column}:{severity_str}:{message}" "--find-config" "--limit-files" source-original)
:error-patterns ((error line-start (or "None" line) ":" (or "None" column) ":MAJOR:" (message) line-end)
(warning line-start (or "None" line) ":" (or "None" column) ":NORMAL:" (message) line-end)
(info line-start (or "None" line) ":" (or "None" column) ":INFO:" (message) line-end))
:error-patterns ((error (or "None" line) ":" (or "None" column) ":MAJOR:" (message))
(warning (or "None" line) ":" (or "None" column) ":NORMAL:" (message))
(info (or "None" line) ":" (or "None" column) ":INFO:" (message)))
:modes (c-mode
csharp-mode
c++-mode
Expand Down

0 comments on commit c3f56b7

Please sign in to comment.