You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, given we have a max line length of 80:
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvdefmethod_definition_that_is_just_under_the_line_length_limit(foo,bar,baz)# rubocop:disable Metrics/AbcSize# The method body is too complicated and fails the ABC complexity copend
The rubocop:disable comment pushes the line length over the limit. I'd like an option to ignore counting the disable comment in the length of the line.
This could also be solved with an ignore pattern as described here: #3479.
Thanks :)
The text was updated successfully, but these errors were encountered:
For example, given we have a max line length of 80:
The
rubocop:disable
comment pushes the line length over the limit. I'd like an option to ignore counting the disable comment in the length of the line.This could also be solved with an ignore pattern as described here: #3479.
Thanks :)
The text was updated successfully, but these errors were encountered: