You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following is a code example, it has two indentation error.
result =ControlClientReplyForStatusCommand.new(
version:Procodile::VERSION,
messages:@supervisor.messages,
root:@supervisor.config.root,
# app_name: @supervisor.config.app_name, # 1. this comment line not indent with above line
) # 2. ) not indent correct.
Check in following screenshot will more clearly.
The text was updated successfully, but these errors were encountered:
zw963
changed the title
formatter indentation error when comment on the method parameter
formatter indentation error when comment on the method args
Dec 21, 2022
Hi, @straight-shoota , I found a new formatter issue which involves to comment on the lines,
maybe can be fix in one PR, please check. (if should create a new issue, please touch me)
Following code format correct.
moduleTest1beginraise"Error"rescue e : Exceptionputs"Error!"endend
But, if comment the rescue lines out, end indentation error, like this.
moduleTest1beginraise"Error"# rescue e : Exception# puts "Error!"endend
Bug Report
Following is a code example, it has two indentation error.
Check in following screenshot will more clearly.
The text was updated successfully, but these errors were encountered: