From 17b07e9432cee9864bbc2f8d5d3be603791abbdf Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 9 Jul 2024 16:02:44 +0200 Subject: [PATCH] build(biome): Add style configuration to JSON A new "style" configuration has been added to the `biome.json` file. Specifically, the "useImportType" key has been set to "off". This update sets a new rule for JSON style patterns within the project. --- biome.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/biome.json b/biome.json index 89eb673..cab5585 100644 --- a/biome.json +++ b/biome.json @@ -25,6 +25,9 @@ }, "complexity": { "useLiteralKeys": "off" + }, + "style": { + "useImportType": "off" } } },