Class: Lintrunner::Parser::Base
- Inherits:
-
Object
- Object
- Lintrunner::Parser::Base
- Defined in:
- lib/lintrunner/parser/base.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#parse(output, exit_code, options = {}) ⇒ Array<Lintrunner::Message>
Parse the output of a linter so that lintrunner can understand what the warnings are.
Instance Method Details
#parse(output, exit_code, options = {}) ⇒ Array<Lintrunner::Message>
Parse the output of a linter so that lintrunner can understand what the warnings are
13 14 15 |
# File 'lib/lintrunner/parser/base.rb', line 13 def parse(output, exit_code, = {}) raise "Parser must implement #parser method" end |