debian-mirror-gitlab/rubocop/rubocop.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
230 B
Ruby
Raw Permalink Normal View History

2021-12-11 22:18:48 +05:30
# rubocop:disable Naming/FileName
2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
# Auto-require all cops under `rubocop/cop/**/*.rb`
2023-04-23 21:23:45 +05:30
Dir[File.join(__dir__, 'cop', '**', '*.rb')].sort.each { |file| require file }
2021-12-11 22:18:48 +05:30
# rubocop:enable Naming/FileName