diff options
| -rw-r--r-- | lsp/biome.lua | 2 | ||||
| -rw-r--r-- | lsp/eslint.lua | 2 | ||||
| -rw-r--r-- | lsp/ts_ls.lua | 2 | ||||
| -rw-r--r-- | lsp/tsgo.lua | 2 | ||||
| -rw-r--r-- | lsp/vtsls.lua | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lsp/biome.lua b/lsp/biome.lua index bb6e1b00..a1343472 100644 --- a/lsp/biome.lua +++ b/lsp/biome.lua @@ -44,7 +44,7 @@ return { -- As stated in the documentation above, this LSP supports monorepos and simple projects. -- We select then from the project root, which is identified by the presence of a package -- manager lock file. - local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } -- Give the root markers equal priority by wrapping them in a table root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } or vim.list_extend(root_markers, { '.git' }) diff --git a/lsp/eslint.lua b/lsp/eslint.lua index 2605c3e9..24fac5c3 100644 --- a/lsp/eslint.lua +++ b/lsp/eslint.lua @@ -91,7 +91,7 @@ return { -- As stated in the documentation above, this LSP supports monorepos and simple projects. -- We select then from the project root, which is identified by the presence of a package -- manager lock file. - local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } -- Give the root markers equal priority by wrapping them in a table root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } or vim.list_extend(root_markers, { '.git' }) diff --git a/lsp/ts_ls.lua b/lsp/ts_ls.lua index 773716ac..0b5a0a3c 100644 --- a/lsp/ts_ls.lua +++ b/lsp/ts_ls.lua @@ -58,7 +58,7 @@ return { -- As stated in the documentation above, this LSP supports monorepos and simple projects. -- We select then from the project root, which is identified by the presence of a package -- manager lock file. - local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } -- Give the root markers equal priority by wrapping them in a table root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } or vim.list_extend(root_markers, { '.git' }) diff --git a/lsp/tsgo.lua b/lsp/tsgo.lua index 3ef9a921..b99c731f 100644 --- a/lsp/tsgo.lua +++ b/lsp/tsgo.lua @@ -30,7 +30,7 @@ return { -- As stated in the documentation above, this LSP supports monorepos and simple projects. -- We select then from the project root, which is identified by the presence of a package -- manager lock file. - local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } -- Give the root markers equal priority by wrapping them in a table root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } or vim.list_extend(root_markers, { '.git' }) diff --git a/lsp/vtsls.lua b/lsp/vtsls.lua index c8ab993a..1265681d 100644 --- a/lsp/vtsls.lua +++ b/lsp/vtsls.lua @@ -84,7 +84,7 @@ return { -- As stated in the documentation above, this LSP supports monorepos and simple projects. -- We select then from the project root, which is identified by the presence of a package -- manager lock file. - local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock', 'deno.lock' } + local root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } -- Give the root markers equal priority by wrapping them in a table root_markers = vim.fn.has('nvim-0.11.3') == 1 and { root_markers, { '.git' } } or vim.list_extend(root_markers, { '.git' }) |
