Pattern: Unnecessary rubocop:enable
Issue: -
This rule detects instances of rubocop:enable
comments that can be removed.
# bad
foo = 1
# rubocop:enable Metrics/LineLength
# good
foo = 1
Pattern: Unnecessary rubocop:enable
Issue: -
This rule detects instances of rubocop:enable
comments that can be removed.
# bad
foo = 1
# rubocop:enable Metrics/LineLength
# good
foo = 1