aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Ferrari <ferrari_pedro@yahoo.com>2024-03-17 16:44:45 -0300
committerGitHub <noreply@github.com>2024-03-17 12:44:45 -0700
commit42f3d8e1c1a90e1114d12a49be838409cbbd1239 (patch)
tree6d7b16028a080bfa8123ce03a17a105df72b87fa
parent67ee2258e08ccb91345d52f62484b657feccef25 (diff)
fix(sqlfluff): remove --force flag since it's default now (#338)
-rw-r--r--lua/conform/formatters/sqlfluff.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/formatters/sqlfluff.lua b/lua/conform/formatters/sqlfluff.lua
index 024df76..23441c2 100644
--- a/lua/conform/formatters/sqlfluff.lua
+++ b/lua/conform/formatters/sqlfluff.lua
@@ -7,7 +7,7 @@ return {
description = "A modular SQL linter and auto-formatter with support for multiple dialects and templated code.",
},
command = "sqlfluff",
- args = { "fix", "--force", "--dialect=ansi", "-" },
+ args = { "fix", "--dialect=ansi", "-" },
stdin = true,
cwd = util.root_file({
".sqlfluff",