SSMS adds square brackets [ ] to every statement in SQL. The brackets are required if you use keywords or special chars in the column names or identifiers.
I would like that option too when formatting code, also for consistency.
SELECT COUNT(*) AS [Row count],
[Column1]
FROM
[dbo].[Table]
WHERE
[Column1] = 'value'