scripts-to-rule-them-all (#174)
All checks were successful
Check / check (push) Successful in 4s

Reviewed-on: #174
Co-authored-by: sneak <sneak@sneak.berlin>
Co-committed-by: sneak <sneak@sneak.berlin>
This commit was merged in pull request #174.
This commit is contained in:
2026-07-07 02:15:20 +02:00
committed by Jeffrey Paul
parent bee933ce8e
commit 291f85f3ed
17 changed files with 569 additions and 36 deletions

12
script/lint Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
# script/lint: run the linter.
set -eu
ROOT="$(cd "$(dirname "$0")/.." && pwd -P)"
main() {
cd "$ROOT"
golangci-lint run --config .golangci.yml ./...
}
main "$@"