Sha256: 7ee3df811c93bbf6008ddbfabea0f2c28f1cfcc8e42086679a588f67046abdf6

Contents?: true

Size: 1.22 KB

Versions: 8

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Naming
      # This cop checks that your heredocs are using meaningful delimiters.
      # By default it disallows `END` and `EO*`, and can be configured through
      # forbidden listing additional delimiters.
      #
      # @example
      #
      #   # good
      #   <<-SQL
      #     SELECT * FROM foo
      #   SQL
      #
      #   # bad
      #   <<-END
      #     SELECT * FROM foo
      #   END
      #
      #   # bad
      #   <<-EOS
      #     SELECT * FROM foo
      #   EOS
      class HeredocDelimiterNaming < Cop
        include Heredoc

        MSG = 'Use meaningful heredoc delimiters.'

        def on_heredoc(node)
          return if meaningful_delimiters?(node)

          add_offense(node, location: :heredoc_end)
        end

        private

        def meaningful_delimiters?(node)
          delimiters = delimiter_string(node)

          return false unless /\w/.match?(delimiters)

          forbidden_delimiters.none? do |forbidden_delimiter|
            delimiters =~ Regexp.new(forbidden_delimiter)
          end
        end

        def forbidden_delimiters
          cop_config['ForbiddenDelimiters'] || []
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/rubocop-0.85.1/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rbhint-0.85.1.rc1 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rubocop-0.85.1 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rbhint-0.8.5.rc1 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rubocop-0.85.0 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rubocop-0.84.0 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rubocop-0.83.0 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb
rubocop-0.82.0 lib/rubocop/cop/naming/heredoc_delimiter_naming.rb