mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
17 lines
485 B
Lua
17 lines
485 B
Lua
return {
|
|
cmd = { "basedpyright" },
|
|
filetypes = { "python" },
|
|
settings = {
|
|
basedpyright = {
|
|
analysis = {
|
|
typeCheckingMode = "basic",
|
|
diagnosticMode = "openFilesOnly",
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
},
|
|
disableOrganizeImports = true, -- let ruff do it
|
|
},
|
|
python = { analysis = { ignore = { "*" } } }, -- let ruff do it
|
|
},
|
|
}
|