I installed gem 'rubocop', '~> 0.67.2' on my rails app and now I want to add some files to rubocom.yml/Exclude so that Rubocop don't track them. I put it in the root of my app
rubocop.yml
AllCops:
Exclude:
- 'db/**/*'
- 'config/**/*'
- 'script/**/*'
- 'bin/{rails,rake}'
but still when I run 'rubocop' command in my terminal, those files are still shown as tracked. What am I missing?