chg: Switch to ruff for python lsp

This commit is contained in:
Sayantan Santra 2025-03-19 18:33:37 -05:00
parent 69d3e7d994
commit cf34340f3c
Signed by: SinTan1729
GPG key ID: 0538DD402EA50898

View file

@ -1,12 +1,10 @@
local lspconfig = require('lspconfig') local lspconfig = require('lspconfig')
local map = vim.keymap.set local map = vim.keymap.set
lspconfig.pyright.setup({ lspconfig.ruff.setup({
settings = { init_options = {
python = { settings = {
analysis = { lineLength = 100,
typeCheckingMode = "off"
}
} }
} }
}) })