Turn off RuboCop rule that favours 'unless' over if for negative conditions
Advertisements If I write if !File.exists(‘file_path’) # create file end I see a RuboCop warning: Favour `unless` over `if` for negative conditions Unfortunately, using unless in this type of context at some point leads to cognitive confusion for me. I am not the only one, please see this issue. So what do I put in… Read More Turn off RuboCop rule that favours 'unless' over if for negative conditions