Project

General

Profile

Bug #5357

Updated by nobu (Nobuyoshi Nakada) over 4 years ago

Hi! 

 Currently, 

 ```ruby 
 return if 
   hash. 
     values_at(:a, :b, :c). 
     reject{ |e| e.nil? or e.empty? }. 
     empty? 
 ``` 

 is indented 

 as 

 ```ruby 
 return if 
   hash. 
   values_at(:a, :b, :c). 
   reject{ |e| e.nil? or e.empty? }. 
   empty? 
 ``` 

 I would prefer it to be indented as in the first example.

Back