biome.json 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
  3. "files": {
  4. "includes": ["**", "!dist/**", "!node_modules/**"],
  5. "ignoreUnknown": true
  6. },
  7. "vcs": {
  8. "clientKind": "git",
  9. "enabled": false,
  10. "useIgnoreFile": true
  11. },
  12. "assist": {
  13. "enabled": true,
  14. "actions": {
  15. "recommended": true
  16. }
  17. },
  18. "formatter": {
  19. "bracketSameLine": false,
  20. "bracketSpacing": true,
  21. "enabled": true,
  22. "formatWithErrors": false,
  23. "indentStyle": "space",
  24. "indentWidth": 2,
  25. "lineEnding": "lf",
  26. "lineWidth": 120
  27. },
  28. "linter": {
  29. "enabled": true,
  30. "rules": {
  31. "recommended": true
  32. }
  33. },
  34. "javascript": {
  35. "formatter": {
  36. "arrowParentheses": "always",
  37. "jsxQuoteStyle": "double",
  38. "quoteProperties": "asNeeded",
  39. "quoteStyle": "double",
  40. "semicolons": "always",
  41. "trailingCommas": "none"
  42. }
  43. }
  44. }