⚙️ config(biome): use json schema from mason installed package

This commit is contained in:
Sergio Laín 2024-05-06 21:46:15 +02:00
parent f31f9dbf87
commit 47f87ed9af
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B

View file

@ -1,5 +1,6 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
// Use the schema of the version installed from mason
"$schema": "~/.local/share/nvim/mason/packages/biome/node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": true
},
@ -26,6 +27,11 @@
"all": true
}
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"json": {
"parser": { "allowComments": true } // for `tsconfig.json`
}