biome.json 693 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
  3. "vcs": {
  4. "enabled": true,
  5. "clientKind": "git",
  6. "useIgnoreFile": true
  7. },
  8. "files": {
  9. "ignoreUnknown": true,
  10. "includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
  11. },
  12. "formatter": {
  13. "enabled": true,
  14. "indentStyle": "space",
  15. "indentWidth": 2
  16. },
  17. "linter": {
  18. "enabled": true,
  19. "rules": {
  20. "recommended": true,
  21. "suspicious": {
  22. "noUnknownAtRules": "off"
  23. }
  24. },
  25. "domains": {
  26. "next": "recommended",
  27. "react": "recommended"
  28. }
  29. },
  30. "assist": {
  31. "actions": {
  32. "source": {
  33. "organizeImports": "on"
  34. }
  35. }
  36. }
  37. }