Skip to content

Commit

Permalink
fix(sqlfluff): remove --force flag since it's default now (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
petobens committed Mar 17, 2024
1 parent 67ee225 commit 42f3d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/conform/formatters/sqlfluff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 42f3d8e

Please sign in to comment.