nvim/lua/plugins/nvim-lint.lua
2024-11-15 21:43:21 -08:00

15 lines
290 B
Lua

return {
"mfussenegger/nvim-lint",
opts = {
linters = {
sqlfluff = {
args = {
"lint",
"--format=json",
-- note: users will have to replace the --dialect argument accordingly
"--dialect=sqlite",
},
},
},
},
}