diff --git a/.config/helix/scripts/testjust b/.config/helix/scripts/testjust deleted file mode 100644 index 6c4be5b7..00000000 --- a/.config/helix/scripts/testjust +++ /dev/null @@ -1,27 +0,0 @@ -test: - #!/bin/sh - if command -v tparse >/dev/null 2>&1; then - set -o pipefail && go test ./... -json | tparse --all --smallscreen - else - go test ./... - fi - -commit: - git add . - git commit - -amend: - git add . - git commit --amend - -fmt: - go fmt ./... - -tools: - go install tool - -lint: - golangci-lint run - -check: fmt lint - diff --git a/.config/helix/scripts/testoutput b/.config/helix/scripts/testoutput deleted file mode 100644 index 6c4be5b7..00000000 --- a/.config/helix/scripts/testoutput +++ /dev/null @@ -1,27 +0,0 @@ -test: - #!/bin/sh - if command -v tparse >/dev/null 2>&1; then - set -o pipefail && go test ./... -json | tparse --all --smallscreen - else - go test ./... - fi - -commit: - git add . - git commit - -amend: - git add . - git commit --amend - -fmt: - go fmt ./... - -tools: - go install tool - -lint: - golangci-lint run - -check: fmt lint -