From 5c0f2d0a18fa621d9499e80593937b663a5d9f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 30 Mar 2024 17:31:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(nvim):=20update=20the=20bi?= =?UTF-8?q?ome.json=20config=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/rules/biome.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.config/nvim/rules/biome.json b/.config/nvim/rules/biome.json index 3494b699..8bf75951 100644 --- a/.config/nvim/rules/biome.json +++ b/.config/nvim/rules/biome.json @@ -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` } }