From 84384006a415f4de0ac98e7824ea5d77687cb87b Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 21 May 2025 22:33:33 -0400 Subject: [PATCH] docs: update copilot instructions with important commands and linting guidelines Signed-off-by: Deluan --- .github/copilot-instructions.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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