2
0

biome.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
  3. "files": {
  4. "includes": [
  5. "**",
  6. "!**/dist/**",
  7. "!**/node_modules/**",
  8. "!**/coverage/**",
  9. "!**/vite.config.ts.timestamp-*",
  10. "!**/vite.server.config.ts.timestamp-*",
  11. "!**/vite.client.config.ts.timestamp-*",
  12. "!**/.pnpm-store/**",
  13. "!**/.turbo/**",
  14. "!**/.vscode/**",
  15. "!**/turbo.json",
  16. "!**/.next/**",
  17. "!bin/**",
  18. "!tsconfig.base.json",
  19. "!**/.devcontainer/**",
  20. "!**/.eslintrc.js",
  21. "!**/.stylelintrc.json",
  22. "!**/package.json",
  23. "!apps/slackbot-proxy/src/public/bootstrap/**",
  24. "!packages/editor/**",
  25. "!packages/pdf-converter-client/src/index.ts",
  26. "!apps/app/playwright/**",
  27. "!apps/app/public/**",
  28. "!apps/app/src/client/**",
  29. "!apps/app/src/components/**",
  30. "!apps/app/src/features/external-user-group/**",
  31. "!apps/app/src/features/growi-plugin/**",
  32. "!apps/app/src/features/mermaid/**",
  33. "!apps/app/src/features/openai/**",
  34. "!apps/app/src/features/opentelemetry/**",
  35. "!apps/app/src/features/page-bulk-export/**",
  36. "!apps/app/src/features/plantuml/**",
  37. "!apps/app/src/features/rate-limiter/**",
  38. "!apps/app/src/features/search/**",
  39. "!apps/app/src/interfaces/**",
  40. "!apps/app/src/models/**",
  41. "!apps/app/src/pages/**",
  42. "!apps/app/src/server/**",
  43. "!apps/app/src/services/**",
  44. "!apps/app/src/stores/**",
  45. "!apps/app/src/stores-universal/**",
  46. "!apps/app/src/styles/**",
  47. "!apps/app/src/utils/**",
  48. "!apps/app/test/integration/service/**",
  49. "!apps/app/test-with-vite/**"
  50. ]
  51. },
  52. "formatter": {
  53. "enabled": true,
  54. "indentStyle": "space"
  55. },
  56. "assist": {
  57. "actions": {
  58. "source": {
  59. "organizeImports": "on"
  60. }
  61. }
  62. },
  63. "linter": {
  64. "enabled": true,
  65. "rules": {
  66. "recommended": true
  67. }
  68. },
  69. "javascript": {
  70. "formatter": {
  71. "quoteStyle": "single"
  72. },
  73. "parser": {
  74. "unsafeParameterDecoratorsEnabled": true
  75. }
  76. },
  77. "overrides": [
  78. {
  79. "includes": ["apps/pdf-converter/**", "./apps/slackbot-proxy/**"],
  80. "linter": {
  81. "rules": {
  82. "style": {
  83. "useImportType": "off"
  84. }
  85. }
  86. }
  87. }
  88. ]
  89. }