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: c17ecf054cea1907e8c1f68da73675fbbc85dc50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable Naming/FileName
# frozen_string_literal: true

# Performance improvements to be upstreamed soon:
# See https://gitlab.com/gitlab-org/gitlab/-/issues/377469
require_relative 'ext/path_util'
require_relative 'ext/variable_force'

# Auto-require all cops under `rubocop/cop/**/*.rb`
Dir[File.join(__dir__, 'cop', '**', '*.rb')].sort.each { |file| require file }

# rubocop:enable Naming/FileName