mirror of
https://github.com/ente-io/ente.git
synced 2025-05-01 11:53:22 +00:00
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Run the configured linters.
|
|
#
|
|
# These checks will run when a PR is opened and new commits are pushed, but it
|
|
# can also be run locally.
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
go vet ./...
|
|
go run honnef.co/go/tools/cmd/staticcheck@latest ./...
|