Sha256: 4d64b73e40f5ef56357bd9498e63fba2bf90982bc0e29415594133a60bc70391

Contents?: true

Size: 371 Bytes

Versions: 144

Compression:

Stored size: 371 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # Checks for BEGIN blocks.
      #
      # @example
      #   # bad
      #   BEGIN { test }
      #
      class BeginBlock < Base
        MSG = 'Avoid the use of `BEGIN` blocks.'

        def on_preexe(node)
          add_offense(node.loc.keyword)
        end
      end
    end
  end
end

Version data entries

144 entries across 143 versions & 14 rubygems

Version Path
rubocop-1.53.0 lib/rubocop/cop/style/begin_block.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rubocop-1.52.1/lib/rubocop/cop/style/begin_block.rb
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.52.1/lib/rubocop/cop/style/begin_block.rb
rubocop-1.52.1 lib/rubocop/cop/style/begin_block.rb