Project

General

Profile

Feature #36984

Updated by dosas please_edit_me 5 months ago

I stumbled upon this problem when executing rubocop for foreman_ansible locally and in gitlab ci 
 https://github.com/rubocop/rubocop/issues/9832 ps://github.com/rubocop/rubocop/issues/9832 

 Change the line here 
 https://github.com/theforeman/foreman_ansible/blob/master/.rubocop.yml#L16 

 from 
 ``` 
 'vendor/bundle/**/*' 
 ``` 
 to 

 ``` 
 'vendor/**/*' 
 ``` 

 This would be the same as in the default config: https://github.com/rubocop/rubocop/blob/master/config/default.yml#L68

Back