diff --git a/.config/nvim/lua/plugins/lsp/settings/basedpyright.lua b/.config/nvim/lua/plugins/lsp/settings/basedpyright.lua deleted file mode 100644 index f8f2f71..0000000 --- a/.config/nvim/lua/plugins/lsp/settings/basedpyright.lua +++ /dev/null @@ -1,20 +0,0 @@ -return { - settings = { - basedpyright = { - analysis = { - autoSearchPaths = true, - useLibraryCodeForTypes = true, - autoImportCompletions = true, - diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly - typeCheckingMode = "standard", -- off, basic, standard, strict, all - diagnosticSeverityOverrides = { - -- reportAny = true - reportOptionalIterable = "warning", - reportArgumentType = "warning", - reportAssignmentType = "warning", - reportIndexIssue = "warning", - }, - }, - }, - }, -}