Files
openmonetis/biome.json
Felipe Coutinho 21c6a8d9d0 fix(lint): corrigir schema biome.json e formatação de imports
- biome.json: bump schema 2.4.10 → 2.4.11
- establishment-logo-picker.tsx, establishment-logo.tsx, navigation-menu.tsx, logo/index.ts: organizar imports e ajustar formatação conforme Biome 2.4.11

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-14 00:31:46 +00:00

68 lines
1.4 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
"includes": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "**/*.json"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noArrayIndexKey": "off",
"noExplicitAny": "warn",
"noImplicitAnyLet": "warn",
"noShadowRestrictedNames": "warn",
"noDocumentCookie": "off",
"useIterableCallbackReturn": "off"
},
"style": {
"noNonNullAssertion": "warn"
},
"a11y": {
"noLabelWithoutControl": "off",
"useFocusableInteractive": "off",
"useSemanticElements": "off",
"noSvgWithoutTitle": "off",
"useButtonType": "off",
"useAriaPropsSupportedByRole": "off"
},
"correctness": {
"noUnusedVariables": "warn",
"noUnusedFunctionParameters": "off",
"noInvalidUseBeforeDeclaration": "warn",
"useExhaustiveDependencies": "warn",
"useHookAtTopLevel": "warn"
},
"security": {
"noDangerouslySetInnerHtml": "off"
},
"performance": {
"noImgElement": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}