Sha256: 60635c50714d99ec768d43dd5626a3ddaf87c18b2af46b557e8e9899f67a5265

Contents?: true

Size: 1.35 KB

Versions: 41

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for places where the `#__dir__` method can replace more
      # complex constructs to retrieve a canonicalized absolute path to the
      # current file.
      #
      # @example
      #   # bad
      #   path = File.expand_path(File.dirname(__FILE__))
      #
      #   # bad
      #   path = File.dirname(File.realpath(__FILE__))
      #
      #   # good
      #   path = __dir__
      class Dir < Base
        extend AutoCorrector

        MSG = "Use `__dir__` to get an absolute path to the current file's directory."
        RESTRICT_ON_SEND = %i[expand_path dirname].freeze

        # @!method dir_replacement?(node)
        def_node_matcher :dir_replacement?, <<~PATTERN
          {(send (const {nil? cbase} :File) :expand_path (send (const {nil? cbase} :File) :dirname  #file_keyword?))
           (send (const {nil? cbase} :File) :dirname     (send (const {nil? cbase} :File) :realpath #file_keyword?))}
        PATTERN

        def on_send(node)
          dir_replacement?(node) do
            add_offense(node) do |corrector|
              corrector.replace(node, '__dir__')
            end
          end
        end

        private

        def file_keyword?(node)
          node.str_type? && node.source_range.is?('__FILE__')
        end
      end
    end
  end
end

Version data entries

41 entries across 41 versions & 6 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/dir.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/dir.rb
rubocop-1.29.1 lib/rubocop/cop/style/dir.rb
rubocop-1.29.0 lib/rubocop/cop/style/dir.rb
rubocop-1.28.2 lib/rubocop/cop/style/dir.rb
rubocop-1.28.1 lib/rubocop/cop/style/dir.rb
rubocop-1.28.0 lib/rubocop/cop/style/dir.rb
rubocop-1.27.0 lib/rubocop/cop/style/dir.rb
rubocop-1.26.1 lib/rubocop/cop/style/dir.rb
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/rubocop-1.26.0/lib/rubocop/cop/style/dir.rb
rubocop-1.26.0 lib/rubocop/cop/style/dir.rb
rubocop-1.25.1 lib/rubocop/cop/style/dir.rb
rubocop-1.25.0 lib/rubocop/cop/style/dir.rb
phillipug-foodie-0.1.0 .vendor/ruby/3.0.0/gems/rubocop-1.24.0/lib/rubocop/cop/style/dir.rb
rubocop-1.24.1 lib/rubocop/cop/style/dir.rb
rubocop-1.24.0 lib/rubocop/cop/style/dir.rb
rubocop-1.23.0 lib/rubocop/cop/style/dir.rb
rubocop-1.22.3 lib/rubocop/cop/style/dir.rb
rubocop-1.22.2 lib/rubocop/cop/style/dir.rb
rubocop-1.22.1 lib/rubocop/cop/style/dir.rb