Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '_support/validate-formatting.sh')
-rwxr-xr-x_support/validate-formatting.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/_support/validate-formatting.sh b/_support/validate-formatting.sh
deleted file mode 100755
index 38f54661..00000000
--- a/_support/validate-formatting.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-IMPORT_RESULT=$(./bin/goimports -e -local "gitlab.com/gitlab-org/gitlab-pages" -l "$@")
-
-if [ -n "${IMPORT_RESULT}" ]; then
- echo >&2 "Please run ./bin/goimports -w -local gitlab.com/gitlab-org/gitlab-pages -l $@"
- echo "${IMPORT_RESULT}"
- exit 1
-fi