Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 897 Bytes

File metadata and controls

25 lines (15 loc) · 897 Bytes

AGENTS.md

Coding Conventions

  • Write code in Swift language.
  • Always use multi-line formatting for lists, arrays, function parameters, etc.
  • Always add a comma after the last item in multi-line lists, arrays, function parameters, etc.

Testing instructions

  • Before returning back to me, build the app and run tests. If you find compile-time or test errors fix them before reporting back.

Commit message guidelines

Pull request guidelines

  • Always create a pull request for changes instead of committing to develop.
  • You can create multiple commits on the Pull request during a session.
  • Always add a changelog entry in CHANGELOG.md with the same title as the pull request

Deployment steps

Misc

  • When you need to download content from the internet OR to create temporary files, always create a new temporary directory using mktemp -d and perform the task there.