From c8a1e894e00401027d2b958264fa3ccd985583c8 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sun, 13 Jul 2025 14:45:22 +0200 Subject: [PATCH] Remove unused script lint.sh --- .gitignore | 1 - scripts/lint.sh | 12 ------------ 2 files changed, 13 deletions(-) delete mode 100755 scripts/lint.sh diff --git a/.gitignore b/.gitignore index e9c93214f..6d9b25784 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ coverage.txt .idea/ # Binaries -.bin/ lazygit lazygit.exe diff --git a/scripts/lint.sh b/scripts/lint.sh deleted file mode 100755 index 98d697bc1..000000000 --- a/scripts/lint.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -set -e - -if [ ! -x ./.bin/golangci-lint ]; then - echo 'You need to install golangci-lint into .bin' - echo 'One way to do this is to run' - echo ' GOBIN=$(pwd)/.bin go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.2.1' - exit 1 -fi - -./.bin/golangci-lint run