When I format my SQL code SQL Prompt is putting a space before the end of command terminator (;).
Given:
SELECT
  1 AS Field1,
  2 AS Field2,
  3 AS Field3
INTO
  #Test;
If you format it it ends up like:
SELECT
  1 AS Field1,
  2 AS Field2,
  3 AS Field3
INTO 
  #Test ;
Is there any way to change that? Maybe it should use the "Space before comma" option from the "Commas & parentheses" section.
      
        
        
        
      
     
  
Given:
If you format it it ends up like:
Is there any way to change that? Maybe it should use the "Space before comma" option from the "Commas & parentheses" section.