aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/tailwindcss.lua
Commit message (Collapse)AuthorAgeFilesLines
* docs: add deprecation notice to lua/lspconfig/configs #4189Justin M. Keyes2025-11-151-0/+7
|
* fix(tailwindcss): improved tailwindcss detection (#3648)Maksim Terpilovskii2025-03-201-5/+5
| | | | | | | | | | | | | Problem: The Tailwind CSS language server is enabled for any workspace containing a `.git` folder, a `node_modules` folder, or a `package.json` file, which is not ideal. Solution: Introduce a specific check for the `tailwindcss` package within `package.json` file using `insert_package_json` method from `util` (this approach is used in `eslint` config). Since the latest version of Tailwind CSS (v4) no longer requires `postcss.config.*` and `tailwind.config.*` files, these can no longer be relied upon as sole criteria for enabling Tailwind CSS LSP.
* refactor: deprecate util.find_git_ancestordundargoc2024-12-141-1/+1
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* fix(regression): fix for vim.fs.find regression not returning parent ↵Jacob Reed2024-12-131-4/+3
| | | | directory (#3505)
* refactor: deprecate util.find_package_json_ancestordundargoc2024-12-131-1/+1
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* refactor: deprecate util.find_node_modules_ancestordundargoc2024-12-081-3/+4
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* refactor(docs): drop redundant default_config #3398Justin M. Keyes2024-10-241-3/+0
| | | | | | | Problem: default_config duplicated in `docs` items. Solution: delete it. docgen autogenerates this now.
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-0/+130
Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.