Project

General

Profile

« Previous | Next » 

Revision d548073f

Added by nobu (Nobuyoshi Nakada) almost 6 years ago

Enable indentation warning against if just after else

if false
  puts 'false'
else if true
  puts 'true'
end # -:5: warning: mismatched indentations at 'end' with 'if' at 3
end

[Feature #15990]