PoorMansTSqlFormatter
PoorMansTSqlFormatter copied to clipboard
How to avoid line breaks on some statements such as declare variable list
What I would like to achieve is not to add break lines on statement such as:
declare @someVar smallint, @someOtherVar char(1)
Undesired output is
DECLARE @someVar SMALLINT
,@someOtherVar CHAR(1)
instead keep it inact.
You can use No format tag: --[NoFormat] declare @someVar smallint, @someOtherVar char(1) --[/NoFormat]