mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-23 00:47:51 +00:00
12 lines
407 B
Ruby
12 lines
407 B
Ruby
# rubocop:disable Naming/FileName
|
|
# frozen_string_literal: true
|
|
|
|
# Load ActiveSupport to ensure that core extensions like `Enumerable#exclude?`
|
|
# are available in cop rules like `Performance/CollectionLiteralInLoop`.
|
|
require 'active_support/all'
|
|
|
|
# Auto-require all cops under `rubocop/cop/**/*.rb`
|
|
Dir[File.join(__dir__, 'cop', '**', '*.rb')].each { |file| require file }
|
|
|
|
# rubocop:enable Naming/FileName
|