Created
February 16, 2026 10:08
-
-
Save wcastand/49a389c2a861a0d40fb3e8c1284db908 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "assist": { | |
| "actions": { | |
| "source": { | |
| "organizeImports": "on", | |
| "useSortedAttributes": "on", | |
| "useSortedKeys": "on", | |
| "useSortedProperties": "on" | |
| } | |
| }, | |
| "enabled": true | |
| }, | |
| "files": { | |
| "ignoreUnknown": false, | |
| "includes": [ | |
| "src/**", | |
| "app/**", | |
| "plugins/**", | |
| "modules/**", | |
| "scripts/**", | |
| "docs/src/**", | |
| "__tests__/**", | |
| "!src/api/graphql-schema.ts", | |
| "!src/uniwind-types.d.ts", | |
| "!src/api/types.ts", | |
| "!plugins/build", | |
| "*.ts", | |
| "*.tsx", | |
| "*.js" | |
| ] | |
| }, | |
| "formatter": { | |
| "enabled": true, | |
| "indentStyle": "tab", | |
| "indentWidth": 2, | |
| "lineWidth": 120 | |
| }, | |
| "javascript": { | |
| "formatter": { | |
| "quoteStyle": "double", | |
| "semicolons": "asNeeded" | |
| } | |
| }, | |
| "linter": { | |
| "domains": { | |
| "react": "recommended", | |
| "types": "all" | |
| }, | |
| "enabled": true, | |
| "rules": { | |
| "correctness": { | |
| "noUnusedImports": { | |
| "fix": "safe", | |
| "level": "warn" | |
| }, | |
| "noUnusedVariables": "error", | |
| "useExhaustiveDependencies": { | |
| "fix": "safe", | |
| "level": "info" | |
| }, | |
| "useUniqueElementIds": "off" | |
| }, | |
| "style": { | |
| "noImplicitBoolean": "off", | |
| "noInferrableTypes": "error", | |
| "noNonNullAssertion": "error", | |
| "noParameterAssign": "error", | |
| "noUnusedTemplateLiteral": "error", | |
| "noUselessElse": "error", | |
| "useAsConstAssertion": "error", | |
| "useBlockStatements": "off", | |
| "useConst": "error", | |
| "useDefaultParameterLast": "error", | |
| "useEnumInitializers": "error", | |
| "useExponentiationOperator": "error", | |
| "useExportType": "error", | |
| "useImportType": "warn", | |
| "useLiteralEnumMembers": "error", | |
| "useNodejsImportProtocol": "error", | |
| "useNumberNamespace": "error", | |
| "useSelfClosingElements": "error", | |
| "useShorthandFunctionType": "error", | |
| "useSingleVarDeclarator": "error", | |
| "useTemplate": "error" | |
| }, | |
| "suspicious": { | |
| "noArrayIndexKey": "off", | |
| "noExplicitAny": "off", | |
| "noImplicitAnyLet": "off" | |
| } | |
| } | |
| }, | |
| "vcs": { | |
| "clientKind": "git", | |
| "enabled": true, | |
| "useIgnoreFile": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment