From bf5389edc7efa3a2feb75cde73e0d7a37509c1d6 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Sat, 21 Sep 2024 21:04:30 +0300 Subject: [PATCH] --- biome.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/biome.json b/biome.json index 28bbb3a..9b50afd 100644 --- a/biome.json +++ b/biome.json @@ -2,10 +2,10 @@ "$schema": "https://raw.githubusercontent.com/biomejs/biome/main/packages/%40biomejs/biome/configuration_schema.json", "files": { "ignore": [ - "**/Target/**/*", + "**/*.astro", "**/Documentation/**/*", + "**/Target/**/*", "**/dist/**/*", - "**/*.astro", "package.json" ], "maxSize": 10000000 @@ -62,13 +62,13 @@ "all": true, "noExcessiveCognitiveComplexity": "off", "noForEach": "off", - "useLiteralKeys": "off", - "noUselessLoneBlockStatements": "off" + "noUselessLoneBlockStatements": "off", + "useLiteralKeys": "off" }, "correctness": { "all": true, - "noUnusedVariables": "off", - "noNodejsModules": "off" + "noNodejsModules": "off", + "noUnusedVariables": "off" }, "nursery": { "all": true, @@ -85,17 +85,17 @@ "all": true, "noDefaultExport": "off", "noUselessElse": "off", - "useNamingConvention": "off", - "useShorthandFunctionType": "off", "useFilenamingConvention": { "level": "error", "options": { - "strictCase": true, + "filenameCases": ["PascalCase"], "requireAscii": true, - "filenameCases": ["PascalCase"] + "strictCase": true } }, - "useImportType": "off" + "useImportType": "off", + "useNamingConvention": "off", + "useShorthandFunctionType": "off" }, "suspicious": { "all": true,