Search code examples
ruby-on-railsrubysublimetext3rubocop

RuboCop: Line is too long ← How to Ignore?


I just added RuboCop to a rails project and installed the Sublime package to see RuboCop suggestions in the editor. I'm trying to figure out how to change the maximum line length from 80 characters, or just ignore the rule completely.

Currently in use:


Solution

  • In your code, you can disable a bunch of lines like this:

    # rubocop:disable Layout/LineLength
    puts "This line is lonnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnng"
    # rubocop:enable Layout/LineLength
    

    Or add this to your .rubocop.yml file to increase the max length:

    Layout/LineLength:
      Max: 100