aboutsummaryrefslogtreecommitdiffstats
path: root/.golangci.yml
Commit message (Collapse)AuthorAgeFilesLines
* Fix Unbounded Memory Usage in Image Proxygoogle-labs-jules[bot]2026-02-181-0/+3
| | | | | | | | - Added `maxImageProxySize` constant (10MB) to limit memory usage. - Used `io.LimitReader` in `imageProxyHandler` to enforce the limit. - Added regression test `web/proxy_limit_test.go` to verify the fix. Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com>
* Fix CI failure: Remove redundant 'disable' list in .golangci.ymlgoogle-labs-jules[bot]2026-02-181-2/+0
| | | | | | | | - Removed the `disable` list from `.golangci.yml`. - `disable-all: true` conflicts with specifying a list of linters to `disable`. - Since we are already disabling all linters and then enabling specific ones, explicitly disabling `errcheck` is unnecessary and invalid configuration. Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com>
* Fix CI failure: Remove invalid 'version' field from .golangci.ymlgoogle-labs-jules[bot]2026-02-181-1/+0
| | | | | | | - Removed `version: "2"` from `.golangci.yml`. - This field is not supported in the configuration schema for `golangci-lint` v1.64.6, causing the validation error: `additional properties 'version' not allowed`. Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com>
* Backend: Fix linting issues, improve error handling, and replace magic numbersAdam Mathes2026-02-151-2/+1
|
* Create 'make check' unified workflow and fix various lint issuesAdam Mathes2026-02-151-12/+18
|
* Refactor: project structure, implement dependency injection, and align v2 UI ↵Adam Mathes2026-02-141-0/+20
with v1