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
I use a slightly different set of conventions than the ones bundled with rubocop, usually preferring #detect and #select over #find and #find_all respectively. I attempted to configure this in a rubocop.yml file, but the default inherited configuration seems to overwrite any settings I use.
The text was updated successfully, but these errors were encountered:
The problem is that configuration parameters in your .rubocop.yml are merged with the default ones, so all default preferred method settings remain and generate reports.
I use a slightly different set of conventions than the ones bundled with rubocop, usually preferring
#detect
and#select
over#find
and#find_all
respectively. I attempted to configure this in a rubocop.yml file, but the default inherited configuration seems to overwrite any settings I use.The text was updated successfully, but these errors were encountered: