.oxlintrc.staged.json 473 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "./node_modules/oxlint/configuration_schema.json",
  3. "extends": ["./.oxlintrc.json"],
  4. "options": {
  5. "typeAware": false
  6. },
  7. "ignorePatterns": [
  8. "**/lib/**",
  9. "**/node_modules/**",
  10. "**/.sessions/**",
  11. ".claude/**",
  12. "**/.doc-typecheck-*/**",
  13. "**/.node-next-types-*/**",
  14. "website/.generated/**",
  15. "vendor/**",
  16. "native/**",
  17. "**/*.js",
  18. "**/*.mjs",
  19. "**/*.config.ts",
  20. "packages/client/tsdown.client.ts"
  21. ]
  22. }