.oxfmtrc.json 573 B

123456789101112131415161718192021
  1. {
  2. "$schema": "./node_modules/oxfmt/configuration_schema.json",
  3. "semi": true,
  4. "singleQuote": true,
  5. "trailingComma": "all",
  6. "printWidth": 100,
  7. "tabWidth": 2,
  8. "ignorePatterns": [
  9. "node_modules",
  10. ".next",
  11. ".source",
  12. "out",
  13. "pnpm-lock.yaml",
  14. "public/openapi.json",
  15. // Reflowing MDX prose merges headings into paragraphs and collapses lists
  16. // inside JSX components (Steps/Callout). Author MDX by hand.
  17. "content/**/*.mdx",
  18. // Generated API reference pages (fumadocs-openapi output).
  19. "content/docs/**/reference/api"
  20. ]
  21. }