File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ This plugin pack does the following:
77 - ` go ` must be in your ` PATH ` and executable.
88 - formatting is disabled due to https://github.com/sqls-server/sqls/issues/149
99- Adds [ sqls.nvim] ( https://github.com/nanotee/sqls.nvim ) for language specific tooling
10- - Adds ` sqlfluff ` for both formatting and linting (using the ANSI dialect)
10+ - Adds [ sqlfluff] ( https://docs.sqlfluff.com ) for both formatting and linting
Original file line number Diff line number Diff line change @@ -34,12 +34,8 @@ return {
3434
3535 opts .handlers .sqlfluff = function ()
3636 local null_ls = require " null-ls"
37- null_ls .register (null_ls .builtins .diagnostics .sqlfluff .with {
38- extra_args = { " --dialect" , " ansi" },
39- })
40- null_ls .register (null_ls .builtins .formatting .sqlfluff .with {
41- extra_args = { " --dialect" , " ansi" },
42- })
37+ null_ls .register (null_ls .builtins .diagnostics .sqlfluff )
38+ null_ls .register (null_ls .builtins .formatting .sqlfluff )
4339 end
4440 end ,
4541 },
You can’t perform that action at this time.
0 commit comments