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
|