biome.json 520 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
  3. "organizeImports": {
  4. "enabled": true
  5. },
  6. "files": {
  7. "ignore": ["node_modules", "src/client/"]
  8. },
  9. "linter": {
  10. "enabled": true,
  11. "rules": {
  12. "recommended": true,
  13. "suspicious": {
  14. "noExplicitAny": "off",
  15. "noArrayIndexKey": "off"
  16. },
  17. "style": {
  18. "noNonNullAssertion": "off"
  19. }
  20. }
  21. },
  22. "formatter": {
  23. "indentStyle": "space"
  24. },
  25. "javascript": {
  26. "formatter": {
  27. "quoteStyle": "double",
  28. "semicolons": "asNeeded"
  29. }
  30. }
  31. }