class Codeqa::Checkers::RubocopLint

Public Instance Methods

hint() click to toggle source
# File lib/codeqa/checkers/rubocop_lint.rb, line 10
def hint
  'Rubocop found syntax errors, please fix your code.'
end
name() click to toggle source
# File lib/codeqa/checkers/rubocop_lint.rb, line 6
def name
  'rubocop lint'
end

Private Instance Methods

config_args() click to toggle source
# File lib/codeqa/checkers/rubocop_lint.rb, line 16
def config_args
  %w(--lint --fail-level error)
end