Skip to content

Commit

Permalink
fix backend linter
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOduneye committed Mar 3, 2024
1 parent 6d4538a commit e9ff5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/commands/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func LintFrontend(target string, fix bool) error {
func LintBackend() error {
fmt.Println("Linting backend")

cmd := exec.Command("golangci-lint", "run", "--fix")
cmd := exec.Command("go", "vet", "./...")
cmd.Dir = BACKEND_DIR

err := cmd.Run()
Expand Down

0 comments on commit e9ff5a0

Please sign in to comment.