diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-27 13:32:36 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-27 13:32:36 +0000 |
| commit | ff9c0af8f9b2097fdd2695058db7e04c193908aa (patch) | |
| tree | 5b33d354581f7ee869737e0d400f0454439fff92 | |
| parent | fix(basedpyright): remove explicit useLibraryCodeForTypes #4290 (diff) | |
| download | nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar.gz nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar.bz2 nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar.lz nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar.xz nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.tar.zst nvim-lspconfig-ff9c0af8f9b2097fdd2695058db7e04c193908aa.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 5 | ||||
| -rw-r--r-- | doc/configs.txt | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/doc/configs.md b/doc/configs.md index 30e8d30b..0a651dd3 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -1373,8 +1373,7 @@ Default config: basedpyright = { analysis = { autoSearchPaths = true, - diagnosticMode = "openFilesOnly", - useLibraryCodeForTypes = true + diagnosticMode = "openFilesOnly" } } } @@ -5178,7 +5177,7 @@ Default config: - `init_options` : ```lua { - command = { "golangci-lint", "run", "--output.json.path=stdout", "--show-stats=false" } + command = { "golangci-lint", "run", "--output.text.path=", "--output.tab.path=", "--output.html.path=", "--output.checkstyle.path=", "--output.junit-xml.path=", "--output.teamcity.path=", "--output.sarif.path=", "--show-stats=false", "--output.json.path=stdout" } } ``` - `root_markers` : diff --git a/doc/configs.txt b/doc/configs.txt index 5e44c473..1dd428ea 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -782,8 +782,7 @@ Default config: basedpyright = { analysis = { autoSearchPaths = true, - diagnosticMode = "openFilesOnly", - useLibraryCodeForTypes = true + diagnosticMode = "openFilesOnly" } } } @@ -3699,7 +3698,7 @@ Default config: { "go", "gomod" } - init_options: >lua { - command = { "golangci-lint", "run", "--output.json.path=stdout", "--show-stats=false" } + command = { "golangci-lint", "run", "--output.text.path=", "--output.tab.path=", "--output.html.path=", "--output.checkstyle.path=", "--output.junit-xml.path=", "--output.teamcity.path=", "--output.sarif.path=", "--show-stats=false", "--output.json.path=stdout" } } - root_markers: >lua { ".golangci.yml", ".golangci.yaml", ".golangci.toml", ".golangci.json", "go.work", "go.mod", ".git" } |
