Shopify / rubocop-sorbet

A collection of RuboCop rules for Sorbet
MIT License
182 stars 27 forks source link

Suggested cop: remove whitespace between sig and method #124

Closed alex-tan closed 1 year ago

alex-tan commented 2 years ago

Bad example:

sig { void }

def method_name
end

Good example:

sig { void }
def method_name
end