akouryy/rubocop-expert

View on GitHub
lib/rubocop/expert.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module RuboCop
  module Expert # :nodoc:
    ROOT_PATH = File.expand_path '../..', __dir__
    CONFIG_DEFAULT_PATH = File.expand_path 'config/default.yml', ROOT_PATH
    CONFIG = Psych.safe_load(File.read CONFIG_DEFAULT_PATH).freeze
  end
end

require_relative 'cop/expert/redundant_parentheses_for_method_call'
require_relative 'expert/inject'
require_relative 'expert/version'