dprint-plugin-sql 0.2.0

SQL formatter for dprint via sqlformat-rs.
Documentation
== should format basic ==
SELECT *   FROM   dbo.Test    WHERE   test =   'asdf'
GO



update dbo.Test Set test=1
GO

[expect]
SELECT
  *
FROM
  dbo.Test
WHERE
  test = 'asdf'
GO
update
  dbo.Test
Set
  test = 1
GO