.oxlintrc.json 810 B

12345678910111213141516
  1. {
  2. "$schema": "https://raw.githubusercontent.com/nicolo-ribaudo/oxc-project.github.io/refs/heads/json-schema/src/public/.oxlintrc.schema.json",
  3. "rules": {
  4. // Effect uses `function*` with Effect.gen/Effect.fnUntraced that don't always yield
  5. "require-yield": "off",
  6. // SolidJS uses `let ref: T | undefined` for JSX ref bindings assigned at runtime
  7. "no-unassigned-vars": "off",
  8. // SolidJS tracks reactive deps by reading properties inside createEffect
  9. "no-unused-expressions": "off",
  10. // Intentional control char matching (ANSI escapes, null byte sanitization)
  11. "no-control-regex": "off",
  12. // SST and plugin tools require triple-slash references
  13. "triple-slash-reference": "off"
  14. },
  15. "ignorePatterns": ["**/node_modules", "**/dist", "**/.build", "**/.sst", "**/*.d.ts"]
  16. }