You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
<!-- What does this PR do? Why? -->
## Changes
<!-- Bullet list of changes -->
## Test plan
<!-- How was this tested? -->
- [ ] `make test` passes
- [ ] `cd web && npx tsc --noEmit` passes
Copy file name to clipboardExpand all lines: Makefile
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
.PHONY: help dev build run test clean frontend backend stop start restart show-version bump-patch bump-minor bump-major release site site-build
1
+
.PHONY: help dev build run test clean frontend backend stop start restart show-version bump-patch bump-minor bump-major release site site-build lint lint-go lint-web
2
2
3
3
# Version
4
4
VERSION := $(shell cat VERSION | tr -d 'v\n')
@@ -23,6 +23,9 @@ help:
23
23
@echo " make frontend - Run React frontend only"
24
24
@echo " make build - Build production binaries"
25
25
@echo " make test - Run tests"
26
+
@echo " make lint - Run all linters"
27
+
@echo " make lint-go - Run Go linter (golangci-lint)"
28
+
@echo " make lint-web - Run frontend linter (ESLint)"
0 commit comments