diff --git a/spec/fixtures/rubocop_exception.rb b/spec/fixtures/rubocop_exception.rb index 7f63af5..2122f05 100644 --- a/spec/fixtures/rubocop_exception.rb +++ b/spec/fixtures/rubocop_exception.rb @@ -6,4 +6,9 @@ module RubocopException def some_method_with_disabled_rule end # rubocop:enable Rails/SomeRule + + # rubocop:disable Lint/SomeLint + def some_method_misspelled_reenable + end + # rubocop:enable Lint/SomLint end