🔧 chore(nvim): update the biome.json config file

This commit is contained in:
Sergio Laín 2024-03-30 17:31:37 +01:00
parent de181a4e46
commit 5c0f2d0a18
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.2/schema.json",
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
"organizeImports": {
"enabled": true
},
@ -11,12 +11,22 @@
"formatWithErrors": true
},
"javascript": {
"globals": ["ObjC", "Application", "delay", "Path", "$"]
"globals": [
"ObjC", // JXA variable
"Application",
"delay",
"Path",
"$",
"dv" // dataview
]
},
"linter": {
"enabled": true,
"rules": {
"all": true
}
},
"json": {
"parser": { "allowComments": true } // for `tsconfig.json`
}
}