28 lines
662 B
Lua
28 lines
662 B
Lua
local utils = require("ow.utils")
|
|
|
|
---@type ServerConfig
|
|
return {
|
|
mason = "ruff",
|
|
keymaps = {
|
|
{
|
|
mode = "n",
|
|
lhs = "<leader>lf",
|
|
rhs = function()
|
|
vim.lsp.buf.format()
|
|
utils.format({
|
|
cmd = {
|
|
"ruff",
|
|
"check",
|
|
"--stdin-filename=%file%",
|
|
"--select=I",
|
|
"--fix",
|
|
"--quiet",
|
|
"-",
|
|
},
|
|
output = "stdout",
|
|
})
|
|
end,
|
|
},
|
|
},
|
|
}
|