From 7616c187469fbaa99c6120f0313d9aa190e07083 Mon Sep 17 00:00:00 2001 From: Hayden Bleasel Date: Tue, 10 Dec 2024 14:50:25 -0500 Subject: [PATCH] next-forge changes --- biome.json | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/biome.json b/biome.json index 4244574..58a9b4b 100644 --- a/biome.json +++ b/biome.json @@ -22,19 +22,36 @@ }, "correctness": { "noUndeclaredDependencies": "off", - "useImportExtensions": "off" + "useImportExtensions": "off", + "noNodejsModules": "off" }, "nursery": { "all": true, - "useImportRestrictions": "off", + "noCommonJs": "off", "noProcessEnv": "off", + "noSecrets": "off", "useComponentExportOnlyModules": "off", - "useExplicitType": "off" + "useExplicitType": "off", + "useImportRestrictions": "off", + "useConsistentCurlyBraces": "off", + "useSortedClasses": { + "fix": "safe", + "level": "error", + "options": { + "attributes": ["className"], + "functions": ["clsx", "cva", "tw", "twMerge", "cn", "twJoin"] + } + } + }, + "performance": { + "noBarrelFile": "off", + "noReExportAll": "off" }, "style": { "noDefaultExport": "off", "noImplicitBoolean": "off", "useExplicitLengthCheck": "off", + "noNamespaceImport": "off", "useFilenamingConvention": { "level": "error", "options": { @@ -42,10 +59,12 @@ "filenameCases": ["kebab-case"] } }, - "useSingleVarDeclarator": "off" + "useSingleVarDeclarator": "off", + "useNamingConvention": "off" }, "suspicious": { - "noReactSpecificProps": "off" + "noReactSpecificProps": "off", + "noArrayIndexKey": "off" } } },