Hi, I am using Azure Data Studio plugin for SQL Server scripts (T-SQL).
Is there any possibility to keep an expression after IF in the same line ?
Current formatting:
if
my_function (@my_var) = 0
begin
return null
end
I'd like to have:
if my_function (@my_var) = 0 begin return null end

