16 lines
290 B
Lua
16 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",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|