johantell / SublimeLinter-contrib-credo

Elixir linting with credo for sublime
MIT License
1 stars 3 forks source link

Warn on Design messages too #3

Closed markalfred closed 6 years ago

markalfred commented 7 years ago

The regex only matched R, F, and C, it should match D too to warn about design messages. Also, there are unnecessary pipes in the regex:

- r'(?:(?P<error>[W])|(?P<warning>[R|F|C])): '
+ r'(?:(?P<error>[W])|(?P<warning>[RFCD])): '