aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Sjödin <86059470+MattiasMTS@users.noreply.github.com>2024-02-22 16:45:55 +0100
committerGitHub <noreply@github.com>2024-02-22 07:45:55 -0800
commit015f9e90d945545b665dfda52e6c96590c3d1292 (patch)
tree25bad38211ef87643154b0922ffa45b478d3c26e
parentbfae1d80d88607921e2ba5d75fd41bf88f0cd6c9 (diff)
feat: add formatter sqlfmt (#307)
-rw-r--r--README.md3
-rw-r--r--lua/conform/formatters/sqlfmt.lua9
2 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index af0b2e5..4b18938 100644
--- a/README.md
+++ b/README.md
@@ -275,6 +275,7 @@ You can view this list in vim with `:help conform-formatters`
- [shfmt](https://github.com/mvdan/sh) - A shell parser, formatter, and interpreter with `bash` support.
- [sql_formatter](https://github.com/sql-formatter-org/sql-formatter) - A whitespace formatter for different query languages.
- [sqlfluff](https://github.com/sqlfluff/sqlfluff) - A modular SQL linter and auto-formatter with support for multiple dialects and templated code.
+- [sqlfmt](https://docs.sqlfmt.com) - sqlfmt formats your dbt SQL files so you don't have to. It is similar in nature to Black, gofmt, and rustfmt (but for SQL).
- [squeeze_blanks](https://www.gnu.org/software/coreutils/manual/html_node/cat-invocation.html#cat-invocation) - Squeeze repeated blank lines into a single blank line via `cat -s`.
- [standardjs](https://standardjs.com) - JavaScript Standard style guide, linter, and formatter.
- [standardrb](https://github.com/standardrb/standard) - Ruby's bikeshed-proof linter and formatter.
@@ -547,7 +548,6 @@ Retrieve the available formatters for a buffer
`list_all_formatters(): conform.FormatterInfo[]` \
List information about all filetype-configured formatters
-
### get_formatter_info(formatter, bufnr)
`get_formatter_info(formatter, bufnr): conform.FormatterInfo` \
@@ -566,6 +566,7 @@ Check if the buffer will use LSP formatting when lsp_fallback = true
| Param | Type | Desc |
| ------- | ------------ | ------------------------------------ |
| options | `nil\|table` | Options passed to vim.lsp.buf.format |
+
<!-- /API -->
## Acknowledgements
diff --git a/lua/conform/formatters/sqlfmt.lua b/lua/conform/formatters/sqlfmt.lua
new file mode 100644
index 0000000..83bcad3
--- /dev/null
+++ b/lua/conform/formatters/sqlfmt.lua
@@ -0,0 +1,9 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://docs.sqlfmt.com",
+ description = "sqlfmt formats your dbt SQL files so you don't have to. It is similar in nature to Black, gofmt, and rustfmt (but for SQL)",
+ },
+ command = "sqlfmt",
+ args = { "-" },
+}