disable linting until cleanups are finished

This commit is contained in:
2025-11-15 16:00:58 -08:00
parent 876a0a2c2b
commit 547a0d8f32
2 changed files with 3 additions and 2 deletions

View File

@@ -59,8 +59,9 @@ jobs:
path: /tmp/test-reports path: /tmp/test-reports
# Invoke jobs via workflows # Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
# Linting is disabled while cleanups are ongoing.
workflows: workflows:
testbuild: testbuild:
jobs: jobs:
- testbuild - testbuild
- lint # - lint

View File

@@ -11,7 +11,7 @@ import (
var progname = filepath.Base(os.Args[0]) var progname = filepath.Base(os.Args[0])
// ProgName returns what lib thinks the program name is, namely the // 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. // It is similar to the Linux __progname function.
func ProgName() string { func ProgName() string {