aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/biome.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-36/+0
| | | | | | | | | | | | | | 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.
* feat(biome): add `css` as filetype (#3196)Chris Grieser2024-06-061-0/+1
| | | | The latest biome release added support for css files: https://github.com/biomejs/biome/releases/tag/cli%2Fv1.8.0
* feat: update biome supported filetypes (#3063)Tristan Yang2024-03-101-0/+3
|
* fix(biome): add `biome.jsonc` as root pattern (new in biome 1.6) (#3061)Chris Grieser2024-03-101-2/+2
| | | https://biomejs.dev/blog/biome-v1-6/#support-for-biomejsonc
* fix(biome)!: make biome only run in projects with biome.json file (#2984)willparsons2024-01-281-7/+3
| | | | | | | Closes #2980 This PR adjusts the configuration for the biome LSP to only attach if there is an existing biome.json found. This helps prevent conflicts in ESLint projects since biome would attach and start providing diagnostics and would format files which could conflict with the ESLint/Prettier rules that are defined.
* feat: add `biome` (`rome` successor) (#2790)pseudometa2023-09-091-0/+36
* feat: add `biome` (`rome` successor) * fix: add jsonc support for biome biome recently added support for jsonc https://biomejs.dev/blog/biome-v1#jsonc-support-and-comments * fix: leftover reference to `rome`