Sha256: 2601d88da78cb18d1c47c1537d5a2487878bfda66a6cc55f4ade7bdc3491db91
Contents?: true
Size: 320 Bytes
Versions: 24
Compression:
Stored size: 320 Bytes
Contents
# encoding: utf-8 module RuboCop module Cop module Style # Checks for semicolon (;) not followed by some kind of space. class SpaceAfterSemicolon < Cop include SpaceAfterPunctuation def kind(token) 'semicolon' if token.type == :tSEMI end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems