.oxfmtrc.json 585 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "./node_modules/oxfmt/configuration_schema.json",
  3. "arrowParens": "always",
  4. "bracketSpacing": true,
  5. "endOfLine": "lf",
  6. "insertFinalNewline": true,
  7. "jsxSingleQuote": true,
  8. "printWidth": 80,
  9. "quoteProps": "as-needed",
  10. "semi": false,
  11. "singleQuote": true,
  12. "sortImports": true,
  13. "sortPackageJson": true,
  14. "sortTailwindcss": true,
  15. "tabWidth": 2,
  16. "trailingComma": "es5",
  17. "ignorePatterns": [
  18. "node_modules",
  19. "dist",
  20. "build",
  21. "coverage",
  22. ".tanstack",
  23. ".eslintrc.cjs",
  24. "**/routeTree.gen.ts",
  25. "src/routeTree.gen.ts"
  26. ]
  27. }