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: 42882966b857dad3d478aace07db57606fe5da44 (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 { |file| require file }

# rubocop:enable Naming/FileName