Ruby - Ecosystem and Best Practices
How can you disable a specific Rubocop cop for a single line of Ruby code?
some_code_here # ???
How can you disable a specific Rubocop cop for a single line of Ruby code?
some_code_here # ???
# rubocop:disable CopName at the end of that line.enable re-enables a cop, while ignore and skip are not valid Rubocop directives.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions