I have seen this kind of indentation change other places, usually in case when blocks, too. Input, unchanged by ripper:
def self.nocwd!
class << self
# rubocop:disable StripeLint/NoDefineMethod
define_method(:skip_chdir_to_tmpdir) { }
end
end
rubyfmt --prism gives:
def self.nocwd!
class << self
# rubocop:disable StripeLint/NoDefineMethod
define_method(:skip_chdir_to_tmpdir) { }
end
end
I think the prism behavior is preferable here?
cc @reese