Skip to content

Commit

Permalink
Remove --force flag in sqlfluff since it's default now
Browse files Browse the repository at this point in the history
  • Loading branch information
petobens committed Mar 16, 2024
1 parent 67ee225 commit b5ec572
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 b5ec572

Please sign in to comment.