From 99443c458c77474939224dc7be3d8f27560b460b Mon Sep 17 00:00:00 2001 From: William Parsons-Heins Date: Wed, 29 May 2024 20:16:20 +0100 Subject: [PATCH] put the typescript readme back to how it was This reverts commit 1e9feeb259f75d38295580bf272f1f6e9d06a8df. --- lua/astrocommunity/pack/typescript/README.md | 42 +------------------- 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/lua/astrocommunity/pack/typescript/README.md b/lua/astrocommunity/pack/typescript/README.md index 06cb0bd98..c0c2a4f7c 100644 --- a/lua/astrocommunity/pack/typescript/README.md +++ b/lua/astrocommunity/pack/typescript/README.md @@ -1,13 +1,5 @@ # TypeScript Language Pack -> [!NOTE] -> The default functionality for this pack is to use eslint and prettier, if you want to use biome then use `typescript.biome`. -> If you don't want either, then use `typescript.core`. -> -> Both variants (default and biome) can be used in unison, and it will determine the appropriate config as best as it can. - -## Default - This plugin pack does the following: - Adds `typescript`, `javascript`, `tsx`, and `jsdoc` Treesitter parsers @@ -19,7 +11,7 @@ This plugin pack does the following: - Adds [package-info.nvim](https://github.com/vuki656/package-info.nvim) for project package management - Adds [nvim-lsp-file-operations](https://github.com/antosha417/nvim-lsp-file-operations) to handles file imports on rename or move within neo-tree -### How do I disable Eslint format on save? +## How do I disable Eslint format on save? To opt out of the Eslint format on save behaviour, you can disable the autocmd setup with the pack with this: @@ -34,35 +26,3 @@ return { }, } ``` - -## Biome - -This plugin pack does the following: - -- Adds `typescript`, `javascript`, `tsx`, and `jsdoc` Treesitter parsers -- Adds `vtsls` and `biome` language server -- Adds [JSON language support](../json) -- Adds support for dap for JS -- Adds [nvim-vtsls](https://github.com/yioneko/nvim-vtsls) for language specific tooling -- Adds [package-info.nvim](https://github.com/vuki656/package-info.nvim) for project package management -- Adds [nvim-lsp-file-operations](https://github.com/antosha417/nvim-lsp-file-operations) to handles file imports on rename or move within neo-tree - -### How do I use biome without mason? - -If you have biome as a dependency, then it's recommended to run the LSP through that dependency. This is because the biome linter and formatter -is prone to change between versions meaning your LSP can show different diagnostics compared to the actual version of biome you have installed. - -```lua -return { - "AstroNvim/astrolsp", - servers = { - "biome", - }, - config = { - biome = { - -- Use the package manager of your project: npx, yarn, pnpm, bun... - cmd = { "yarn", "biome", "lsp-proxy" } - } - } -} -```