Skip to content

RuboCop: Remove excludes for non-existent paths

Peter Leitzen requested to merge pl-rubocop-remove-excludes into master

What does this MR do and why?

This speeds up RuboCop matching files because we have less patterns.

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

How to set up and validate locally

unset REVEAL_RUBOCOP_TODO # if set

# On this branch

# Uncached - sloow
time bundle exec rubocop -P -f q
# ignore

# Cached
time bundle exec rubocop -P -f q

real    0m29.624s
user    1m36.053s
sys     0m10.993s


# On master

# Uncached - sloow
time bundle exec rubocop -P -f q
# ignore

# Cached
time bundle exec rubocop -P -f q

real    0m39.076s
user    1m47.662s
sys     0m11.127s
Edited by Lucas Charles

Merge request reports

Loading