class RuboCop::Cop::Lint::MissingCopEnableDirective
# rubocop:enable Layout/SpaceAroundOperators
# Including this, that’s 3 lines on which the cop is disabled.
x += 1
x= 0
# rubocop:disable Layout/SpaceAroundOperators
# bad
# rubocop:enable Layout/SpaceAroundOperators
# With the previous, there are 2 lines on which cop is disabled.
x= 0
# rubocop:disable Layout/SpaceAroundOperators
# good
# MaximumRangeSize: 2
# Lint/MissingCopEnableDirective:
@example
# EOF
x= 0
# rubocop:disable Layout/SpaceAroundOperators
# bad
# EOF
# y = 1
# rubocop:enable Layout/SpaceAroundOperators
x= 0
# rubocop:disable Layout/SpaceAroundOperators
# good
# MaximumRangeSize: .inf
# Lint/MissingCopEnableDirective:
@example
a file wouldn’t be aware of.
cop disables on wide ranges of code, that latter contributors to
after a ‘# rubocop:disable …` statement. This will prevent leaving
Checks that there is an `# rubocop:enable …` statement
def acceptable_range?(cop, line_range)
def acceptable_range?(cop, line_range) # This has to remain a strict inequality to handle # the case when max_range is Float::INFINITY return true if line_range.max - line_range.min < max_range + 2 # This cop is disabled in the config, it is not expected to be re-enabled return true if line_range.min == CommentConfig::CONFIG_DISABLED_LINE_RANGE_MIN cop_class = RuboCop::Cop::Registry.global.find_by_cop_name cop if cop_class && !processed_source.registry.enabled?(cop_class, config) && line_range.max == Float::INFINITY return true end false end
def department_enabled?(cop, comment)
def department_enabled?(cop, comment) DirectiveComment.new(comment).in_directive_department?(cop) end
def each_missing_enable
def each_missing_enable processed_source.disabled_line_ranges.each do |cop, line_ranges| line_ranges.each { |line_range| yield cop, line_range } end end
def max_range
def max_range @max_range ||= cop_config['MaximumRangeSize'] end
def message(cop, comment, type = 'cop')
def message(cop, comment, type = 'cop') if department_enabled?(cop, comment) type = 'department' cop = cop.split('/').first end if max_range == Float::INFINITY format(MSG, cop: cop, type: type) else format(MSG_BOUND, cop: cop, type: type, max_range: max_range) end end
def on_new_investigation
def on_new_investigation each_missing_enable do |cop, line_range| next if acceptable_range?(cop, line_range) range = source_range(processed_source.buffer, line_range.min, (0..0)) comment = processed_source.comment_at_line(line_range.begin) add_offense(range, message: message(cop, comment)) end end