rubocop-require_tools
rubocop-require_tools copied to clipboard
Analyses your files to check for missing require statements in ruby
Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version. Changelog *Sourced from [rake's changelog](https://github.com/ruby/rake/blob/master/History.rdoc).* > === 13.0.1 > > ==== Bug fixes > > * Fixed bug: Reenabled task...
So I was looking at a new _fastlane_ [PR](https://github.com/fastlane/fastlane/pull/29760/files) It had a ton of rubocop violation ignored that looked like. ```ruby def is_messages? # rubocop:disable Require/MissingRequireStatement return DisplayType::ALL_IMESSAGE.include?(self.display_type) # rubocop:enable...