Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-14 | #852 - Capture error codes for Rubocop | Aliou Diallo | |
2017-08-02 | Rubocop: Show cop name | Junegunn Choi | |
2017-07-13 | #769 Ignore stderr output and output without JSON we can read for rubocop | w0rp | |
2017-07-12 | Rubocop: handle empty 'files' array in output | Eddie Lebow | |
The handler previously assumed there would be at least one entry in the 'files' array in the output JSON. It looks like this in the normal case: "files":[{"path":"app/models/image.rb","offenses":[]}] But if RuboCop's config excludes the specified input files, causing no files to be linted, the output is emptier: "files":[] This change causes the handler to treat that case correctly, and also exit early if the reported offense_count is zero. | |||
2017-07-12 | Fix #760 - Report problems with configuration files for rubocop | w0rp | |
2017-07-09 | Use rubocop's JSON output format (resolves #339) (#738) | Eddie Lebow | |
* Use rubocop's JSON output format (resolves #339) Rubocop's emacs formatter seems to have changed format in some not-so-ancient version. The JSON formatter should provide a more stable interface than parsing lines with a regex. The JSON formatter was introduced in mid-2013, so it should be safe to assume available in any reasonably-modern environment. The oldest currently-supported version of ruby (according to ruby-lang.org) was not supported by rubocop until 2014. * Rubocop: Use global function for GetType * Rubocop: Use scope prefix in GetType * Rubocop: Update command_callback test * Rubocop: add end_col to Handle | |||
2017-04-18 | Add a function for getting matches, and use it to simplify a lot of code | w0rp | |
2017-03-27 | Cover the rubocop handler with tests | w0rp | |