nvim/lua/plugins/nvim-lint.lua

16 lines
290 B
Lua
Raw Permalink Normal View History

2024-11-16 05:42:58 +00:00
return {
"mfussenegger/nvim-lint",
opts = {
linters = {
sqlfluff = {
args = {
"lint",
"--format=json",
-- note: users will have to replace the --dialect argument accordingly
"--dialect=sqlite",
},
},
},
},
}