2025-03-27 08:18:20 +00:00
|
|
|
return {
|
|
|
|
|
cmd = { "pyright-langserver", "--stdio" },
|
|
|
|
|
filetypes = { "python" },
|
2025-03-27 10:47:46 +00:00
|
|
|
root_markers = { "pyproject.toml" },
|
|
|
|
|
|
2025-03-27 08:18:20 +00:00
|
|
|
settings = {
|
|
|
|
|
python = {
|
|
|
|
|
analysis = {
|
|
|
|
|
autoSearchPaths = true,
|
|
|
|
|
diagnosticMode = "openFilesOnly",
|
|
|
|
|
useLibraryCodeForTypes = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
single_file_support = true
|
|
|
|
|
}
|