Commit a15b3fe1 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'pl-rubocop-lint-non-deterministic-require-order' into 'master'

Fix Rubocop TODO Lint/NonDeterministicRequireOrder

See merge request gitlab-org/gitlab!50837
parents d4220251 6a124219
......@@ -166,12 +166,6 @@ Lint/MixedRegexpCaptureTypes:
- 'lib/gitlab/slash_commands/issue_new.rb'
- 'lib/gitlab/slash_commands/run.rb'
# Offense count: 1
# Cop supports --auto-correct.
Lint/NonDeterministicRequireOrder:
Exclude:
- 'rubocop/rubocop.rb'
# Offense count: 135
# Cop supports --auto-correct.
Lint/RedundantCopDisableDirective:
......
# 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))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment