Sha256: 42e78a06fe7bdba0ff6a3f7cf5437735730e9211ca3b3cbc7da85638d62c3bca
Contents?: true
Size: 627 Bytes
Versions: 265
Compression:
Stored size: 627 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Layout # Checks for semicolon (;) not followed by some kind of space. # # @example # # bad # x = 1;y = 2 # # # good # x = 1; y = 2 class SpaceAfterSemicolon < Base include SpaceAfterPunctuation extend AutoCorrector def space_style_before_rcurly cfg = config.for_cop('Layout/SpaceInsideBlockBraces') cfg['EnforcedStyle'] || 'space' end def kind(token) 'semicolon' if token.semicolon? end end end end end
Version data entries
265 entries across 256 versions & 24 rubygems