aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2026-06-18 21:22:11 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2026-06-18 21:22:11 +0000
commit68b41349728f6d8ef68bbf75a589c148d4b0fcea (patch)
treecc7b6528b7dfe5af0a5c18d4c02f2e738c794f84 /lua
parentci: bump actions/checkout from 6 to 7 #4455 (diff)
downloadnvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar.gz
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar.bz2
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar.lz
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar.xz
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.tar.zst
nvim-lspconfig-68b41349728f6d8ef68bbf75a589c148d4b0fcea.zip
docs: update generated annotations
skip-checks: true
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/types/lsp/julials.lua87
1 files changed, 6 insertions, 81 deletions
diff --git a/lua/lspconfig/types/lsp/julials.lua b/lua/lspconfig/types/lsp/julials.lua
index ddb8a864..9f0487ff 100644
--- a/lua/lspconfig/types/lsp/julials.lua
+++ b/lua/lspconfig/types/lsp/julials.lua
@@ -79,86 +79,6 @@
---Juliaup mirror. Defaults to the official sources.
---@field server? string
----@class _.lspconfig.settings.julials.Julia.Lint
----This compares call signatures against all known methods for the called function. Calls with too many or too few arguments, or unknown keyword parameters are highlighted.
----
----```lua
----default = true
----```
----@field call? boolean
----Check for constant conditionals in if statements that result in branches never being reached.
----
----```lua
----default = true
----```
----@field constif? boolean
----Check variables used in type declarations are datatypes.
----
----```lua
----default = true
----```
----@field datadecl? boolean
----Specifies sub-directories in [a package directory](https://docs.julialang.org/en/v1/manual/code-loading/#Package-directories-1) where only basic linting is. This drastically lowers the chance for false positives.
----
----```lua
----default = { "docs", "test" }
----```
----@field disabledDirs? any[]
----Check iterator syntax of loops. Will identify, for example, attempts to iterate over single values.
----
----```lua
----default = true
----```
----@field iter? boolean
----Check for deterministic lazy boolean operators.
----
----```lua
----default = true
----```
----@field lazy? boolean
----Highlight unknown symbols. The `symbols` option will not mark unknown fields.
----
----```lua
----default = "none"
----```
----@field missingrefs? "none" | "symbols" | "all"
----Check submodule names do not shadow their parent's name.
----
----```lua
----default = true
----```
----@field modname? boolean
----Check for use of `==` rather than `===` when comparing against `nothing`.
----
----```lua
----default = true
----```
----@field nothingcomp? boolean
----Check for type piracy - the overloading of external functions with methods specified for external datatypes. 'External' here refers to imported code.
----
----```lua
----default = true
----```
----@field pirates? boolean
----Run the linter on active files.
----
----```lua
----default = true
----```
----@field run? boolean
----Check parameters declared in `where` statements or datatype declarations are used.
----
----```lua
----default = true
----```
----@field typeparam? boolean
----Check that all declared arguments are used within the function body.
----
----```lua
----default = true
----```
----@field useoffuncargs? boolean
-
---@class _.lspconfig.settings.julials.Julia.PersistentSession
---Always copy the command for connecting to an external REPL to the clipboard.
---@field alwaysCopy? boolean
@@ -260,6 +180,12 @@
---@field editor? string
---Enable crash reports to be sent to the julia VS Code extension developers.
---@field enableCrashReporter? boolean
+---Whether to use dynamic package indexing. Disable for reduced functionality with lower resource usage.
+---
+---```lua
+---default = true
+---```
+---@field enableDynamicIndexing? boolean
---Enable usage data and errors to be sent to the julia VS Code extension developers.
---@field enableTelemetry? boolean
---Path to a julia environment. VS Code needs to be reloaded for changes to take effect. Explicitly supports substitution for the `${userHome}`, `${workspaceFolder}`, `${workspaceFolderBasename}`, `${workspaceFolder:<FOLDER_NAME>}`, `${pathSeparator}`, `${env:<ENVIRONMENT_VARIABLE>}`, `${config:<CONFIG_VARIABLE>}` tokens.
@@ -293,7 +219,6 @@
---default = "release"
---```
---@field languageServerJuliaupChannel? string
----@field lint? _.lspconfig.settings.julials.Julia.Lint
---Number of processes to use for testing.
---
---```lua