diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 3eaa829f..64a01c9a 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -42,4 +42,12 @@ This is a music streaming server written in Go with a React frontend. The applic - Test changes thoroughly, especially around concurrent operations - Validate both backend and frontend interactions - Consider how changes will affect user experience and performance -- Test with different music library sizes and configurations \ No newline at end of file +- Test with different music library sizes and configurations +- Always run formatting and linting before committing changes + +## Important commands +- `make build`: Build the application +- `make test`: Run Go tests +- To run tests for a specific package, use `make test PKG=./pkgname/...` +- `make lintall`: Run linters +- `make format`: Format code \ No newline at end of file