Files
openmonetis/biome.json
Felipe Coutinho c7d6e23398 chore: atualiza biome, CLAUDE.md, llms.txt e corrige optional chaining
- biome.json: schema atualizado para 2.4.9
- public/llms.txt: novo arquivo de documentação pública do projeto
- CLAUDE.md: ajustes menores de documentação interna
- invoices-queries.ts: usa optional chaining `?.startsWith` no lugar de
  verificação dupla de nullish
- CHANGELOG.md: documentadas as mudanças do ciclo atual em [Unreleased]

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

68 lines
1.4 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.9/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"
}
}
}
}