aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/configs/settings/pyright.lua
blob: b7e9a2a3bf1f1a238d7992f0349910370a9a4eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
  single_file_support = true,
  settings = {
    python = {
      analysis = {
        typeCheckingMode = true,
        reportUnusedImport = true,
        autoSearchPaths = true,
        diagnosticMode = "workspace",
        useLibraryCodeForTypes = true,
      },
    },
  },
}