Skip to content

Commit

Permalink
next-forge changes
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenbleasel committed Dec 10, 2024
1 parent 45ca118 commit 7616c18
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,49 @@
},
"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": {
"requireAscii": true,
"filenameCases": ["kebab-case"]
}
},
"useSingleVarDeclarator": "off"
"useSingleVarDeclarator": "off",
"useNamingConvention": "off"
},
"suspicious": {
"noReactSpecificProps": "off"
"noReactSpecificProps": "off",
"noArrayIndexKey": "off"
}
}
},
Expand Down

0 comments on commit 7616c18

Please sign in to comment.