Remove empty lines at the end of a batch
For example:
I have such code:
CREATE PROCEDURE dbo.Proc9999999
AS
BEGIN
SELECT 1
END
--many empty lines here
GO
Here what I will get after formatting:
CREATE PROCEDURE dbo.Proc9999999
AS
BEGIN
SELECT 1
END
GO
3
votes
Alex
shared this idea