TaoK / PoorMansTSqlFormatter

A small free .Net and JS library (with demo UI, command-line bulk formatter, SSMS/VS add-in, notepad++ plugin, winmerge plugin, and demo webpage) for reformatting and coloring T-SQL code to the user's preferences.
http://www.architectshack.com/PoorMansTSqlFormatter.ashx
GNU Affero General Public License v3.0
964 stars 267 forks source link

How to avoid line breaks on some statements such as declare variable list #291

Open moguzalp opened 10 months ago

moguzalp commented 10 months ago

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.