Files
runablehq__mini-browser/AGENTS.md
T
cloudycotton 68e8a005fb Initial commit
2026-02-14 16:40:27 +05:30

426 B

Code Style Guidelines

  • Prefer functional style with pure functions and avoid mutations.
  • Let TypeScript infer return types instead of explicit annotations.
  • Use object destructuring for parameters instead of positional arguments.
  • Define interfaces above functions, not inline in signatures.
  • Always validate absolute paths in tools.
  • Use node:path for path operations.
  • Throw descriptive errors for invalid inputs.