biome.json 759 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "complexity": {
  25. "noImportantStyles": "off"
  26. }
  27. },
  28. "domains": {
  29. "next": "recommended",
  30. "react": "recommended"
  31. }
  32. },
  33. "assist": {
  34. "actions": {
  35. "source": {
  36. "organizeImports": "on"
  37. }
  38. }
  39. }
  40. }