Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rubocop.rb « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a5e76a87e2befc91bf551ff4b48478616e52f8d (plain)
1
2
3
4
5
6
7
# rubocop:disable Naming/FileName
# frozen_string_literal: true

# Auto-require all cops under `rubocop/cop/**/*.rb`
Dir[File.join(__dir__, 'cop', '**', '*.rb')].sort.each(&method(:require))

# rubocop:enable Naming/FileName