Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.28 KB

File metadata and controls

39 lines (29 loc) · 1.28 KB

commands available

  • use bun ts to run typecheck
  • use bun lint to lint the project
  • use bun format to format the project. Format after every task is done and project is properly typechecked and linted.

docs

When you need help with any of the core technologies, reference these documentation URLs:

Use the WebFetch tool to look up specific information from these docs when needed.

tanstack query

Prefer:

const fileContents = useQuery(...)

Over:

const { data: fileContents, isLoading, isError, error } = useQuery(...)