Actions
Feature #36984
closedExclude all subdirectories for vendor in .rubocop.yaml
Difficulty:
Triaged:
No
Description
I stumbled upon this problem when executing rubocop for foreman_ansible locally and in gitlab ci
https://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
Actions