diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-06 12:10:58 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-01-06 12:10:58 +0000 |
commit | f2c27c6f97cf138acaed79b90be7a5be520746fc (patch) | |
tree | 369b09c536983f7b8682a8e66ebdac8fd6c54446 /rubocop | |
parent | b3c8b65ec2ab3af29d4d14eac27837e0c4793939 (diff) | |
download | gitlab-ce-f2c27c6f97cf138acaed79b90be7a5be520746fc.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r-- | rubocop/rubocop.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/rubocop.rb b/rubocop/rubocop.rb index 08e09747ae2..c8a573410d8 100644 --- a/rubocop/rubocop.rb +++ b/rubocop/rubocop.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true # Auto-require all cops under `rubocop/cop/**/*.rb` -Dir[File.join(__dir__, 'cop', '**', '*.rb')].each(&method(:require)) +Dir[File.join(__dir__, 'cop', '**', '*.rb')].sort.each(&method(:require)) |