From 547a0d8f325e858d874982cf13da46d52ef91a54 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sat, 15 Nov 2025 16:00:58 -0800 Subject: [PATCH] disable linting until cleanups are finished --- .circleci/config.yml | 3 ++- lib/lib.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aa33a2d..a7988d1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,8 +59,9 @@ jobs: path: /tmp/test-reports # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows +# Linting is disabled while cleanups are ongoing. workflows: testbuild: jobs: - testbuild - - lint +# - lint diff --git a/lib/lib.go b/lib/lib.go index dd01d1a..b0a7a82 100644 --- a/lib/lib.go +++ b/lib/lib.go @@ -11,7 +11,7 @@ import ( var progname = filepath.Base(os.Args[0]) // ProgName returns what lib thinks the program name is, namely the -// basename of of argv0. +// basename of argv0. // // It is similar to the Linux __progname function. func ProgName() string {