Sha256: 00e76176612b9bffdef21a4d59023bb77abe3d647d51d73b52f6c8a869e44163
Contents?: true
Size: 1.21 KB
Versions: 36
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # This cop checks for unnecessary leading blank lines at the beginning # of a file. # # @example # # # bad # # (start of file) # # class Foo # end # # # bad # # (start of file) # # # a comment # # # good # # (start of file) # class Foo # end # # # good # # (start of file) # # a comment class LeadingBlankLines < Cop MSG = 'Unnecessary blank line at the beginning of the source.' def investigate(processed_source) token = processed_source.tokens[0] return unless token && token.line > 1 add_offense(processed_source.tokens[0], location: processed_source.tokens[0].pos) end def autocorrect(node) range = Parser::Source::Range.new(processed_source.buffer, 0, node.begin_pos) lambda do |corrector| corrector.remove(range) end end end end end end
Version data entries
36 entries across 19 versions & 2 rubygems