Skip to content

Commit

Permalink
fix(biome): add biome.jsonc as root pattern (new in biome 1.6)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Mar 9, 2024
1 parent 16295b7 commit 659736f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/lspconfig/server_configurations/biome.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ return {
'typescript.tsx',
'typescriptreact',
},
root_dir = util.root_pattern 'biome.json',
root_dir = util.root_pattern('biome.json', 'biome.jsonc'),
single_file_support = false,
},
docs = {
Expand All @@ -26,7 +26,7 @@ npm install [-g] @biomejs/biome
```
]],
default_config = {
root_dir = [[root_pattern('biome.json')]],
root_dir = [[root_pattern('biome.json', 'biome.jsonc')]],
},
},
}

0 comments on commit 659736f

Please sign in to comment.