Class: Solargraph::Diagnostics::Rubocop
- Includes:
- RubocopHelpers
- Defined in:
- lib/solargraph/diagnostics/rubocop.rb
Overview
This reporter provides linting through RuboCop.
Constant Summary collapse
- SEVERITIES =
Conversion of RuboCop severity names to LSP constants
{ 'refactor' => Severities::HINT, 'convention' => Severities::INFORMATION, 'warning' => Severities::WARNING, 'error' => Severities::ERROR, 'fatal' => Severities::ERROR }
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods included from RubocopHelpers
fix_drive_letter, generate_options, redirect_stdout
Methods inherited from Base
Constructor Details
This class inherits a constructor from Solargraph::Diagnostics::Base
Instance Method Details
#diagnose(source, _api_map) ⇒ Array<Hash>
25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/solargraph/diagnostics/rubocop.rb', line 25 def diagnose source, _api_map , paths = (source.filename, source.code) store = RuboCop::ConfigStore.new runner = RuboCop::Runner.new(, store) result = redirect_stdout{ runner.run(paths) } make_array JSON.parse(result) rescue RuboCop::ValidationError, RuboCop::ConfigNotFoundError => e raise DiagnosticsError, "Error in RuboCop configuration: #{e.}" rescue JSON::ParserError raise DiagnosticsError, 'RuboCop returned invalid data' end |