Rails - Disable rubocop for specific directory
If you want to disable rubocop for special directory, Rubocop has a config to support it:
# rubocop.yml
Metrics/BlockLength:
Enabled: true
Exclude:
- test/**/*
Tuan Tran
If you want to disable rubocop for special directory, Rubocop has a config to support it:
# rubocop.yml
Metrics/BlockLength:
Enabled: true
Exclude:
- test/**/*