From 661f16e550042ce823bef793490f510ffddd60a5 Mon Sep 17 00:00:00 2001 From: Kevin Franklin Kim Date: Fri, 19 Nov 2021 14:16:09 +0100 Subject: [PATCH] chore: linting --- .editorconfig | 2 +- .github/workflows/checks.yml | 2 +- .golangci.yml | 1 - Makefile | 16 +- README.md | 38 +- example/middlewares/requestid/main.go | 1 - example/persistence/mongo/main.go | 3 +- example/persistence/mongo/repository/dummy.go | 4 +- example/persistence/mongo/store/codec.go | 5 +- example/stream/jetstream/main.go | 2 +- example/stream/jetstreamraw/main.go | 2 +- example/telemetry/main.go | 2 +- super-linter.log | 51413 ++++++++++++++++ 13 files changed, 51452 insertions(+), 39 deletions(-) diff --git a/.editorconfig b/.editorconfig index 3693f0c..0977931 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,5 @@ indent_style = tab insert_final_newline = true trim_trailing_whitespace = true -[*.{yaml,yml}] +[*.{yaml,yml,md,mdx}] indent_style = space diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e94c34d..6433c21 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -23,7 +23,7 @@ jobs: run: | matrix=$(find . -type f -name "go.mod" -printf "{\"folder\":\"%h\"}," | sed -e 's/,$//') echo "Matrix: $matrix" - echo ::set-output name=matrix::{\"include\":[$(echo $matrix)]} + echo "::set-output name=matrix::{\"include\":[$matrix]}" go_lint: name: go lint needs: go_matrix diff --git a/.golangci.yml b/.golangci.yml index 243989e..99fa152 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -30,7 +30,6 @@ linters: - bodyclose - dogsled - dupl - - exhaustive - exportloopref - gci - goconst diff --git a/Makefile b/Makefile index 4dc6207..38b6762 100644 --- a/Makefile +++ b/Makefile @@ -16,24 +16,30 @@ check: test lint test: gotestsum --format short-verbose ./... +lint%:files=$(shell find . -type f -name go.mod) +lint%:dirs=$(foreach file,$(files),$(dir $(file)) ) + .PHONY: lint ## Run linter lint: - golangci-lint run + @for dir in $(dirs); do cd $$dir && golangci-lint run; done .PHONY: lint.fix ## Fix lint violations lint.fix: - golangci-lint run --fix + @for dir in $(dirs); do cd $$dir && golangci-lint run --fix; done .PHONY: lint.super ## Run super linter lint.super: docker run --rm -it \ -e 'RUN_LOCAL=true' \ - -e 'VALIDATE_ALL_CODEBASE=true' \ - -e 'VALIDATE_GO=true' \ - -e 'VALIDATE_GITHUB_ACTIONS=true' \ + -e 'DEFAULT_BRANCH=main' \ + -e 'IGNORE_GITIGNORED_FILES=true' \ + -e 'VALIDATE_SHELL_SHFMT=false' \ + -e 'VALIDATE_JSCPD=false' \ + -e 'VALIDATE_BASH=false' \ + -e 'VALIDATE_GO=false' \ -v $(PWD):/tmp/lint \ github/super-linter diff --git a/README.md b/README.md index fb290ef..02690fe 100644 --- a/README.md +++ b/README.md @@ -22,36 +22,36 @@ See the examples folder for usages package main import ( - "net/http" + "net/http" - "github.com/foomo/keel" + "github.com/foomo/keel" ) func main() { - svr := keel.NewServer( - keel.WithHTTPZapService(true), - keel.WithHTTPViperService(true), - keel.WithHTTPPrometheusService(true), - ) + svr := keel.NewServer( + keel.WithHTTPZapService(true), + keel.WithHTTPViperService(true), + keel.WithHTTPPrometheusService(true), + ) - l := svr.Logger() + l := svr.Logger() - svs := newService() + svs := newService() - svr.AddService( - keel.NewServiceHTTP(l, "demo", ":8080", svs), - ) + svr.AddService( + keel.NewServiceHTTP(l, "demo", ":8080", svs), + ) - svr.Run() + svr.Run() } func newService() *http.ServeMux { - s := http.NewServeMux() - s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - w.WriteHeader(http.StatusOK) - _, _ = w.Write([]byte("OK")) - }) - return s + s := http.NewServeMux() + s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + w.WriteHeader(http.StatusOK) + _, _ = w.Write([]byte("OK")) + }) + return s } ``` diff --git a/example/middlewares/requestid/main.go b/example/middlewares/requestid/main.go index 64f6636..00dab2a 100644 --- a/example/middlewares/requestid/main.go +++ b/example/middlewares/requestid/main.go @@ -37,4 +37,3 @@ func main() { svr.Run() } - diff --git a/example/persistence/mongo/main.go b/example/persistence/mongo/main.go index 8a52380..61907ac 100644 --- a/example/persistence/mongo/main.go +++ b/example/persistence/mongo/main.go @@ -4,6 +4,7 @@ import ( "context" "time" + "github.com/google/uuid" "go.mongodb.org/mongo-driver/bson" "go.mongodb.org/mongo-driver/mongo/options" @@ -12,8 +13,6 @@ import ( "github.com/foomo/keel/example/persistence/mongo/store" "github.com/foomo/keel/log" keelmongo "github.com/foomo/keel/persistence/mongo" - - "github.com/google/uuid" ) // docker run -it --rm -p 27017:27017 mongo diff --git a/example/persistence/mongo/repository/dummy.go b/example/persistence/mongo/repository/dummy.go index 4a264f3..98e22f2 100644 --- a/example/persistence/mongo/repository/dummy.go +++ b/example/persistence/mongo/repository/dummy.go @@ -2,7 +2,6 @@ package repository import ( "context" - "sync" "go.mongodb.org/mongo-driver/mongo/options" @@ -11,8 +10,7 @@ import ( ) type DummyRepository struct { - collection *keelmongo.Collection - upsertMutex sync.Mutex + collection *keelmongo.Collection } // NewDummyRepository constructor diff --git a/example/persistence/mongo/store/codec.go b/example/persistence/mongo/store/codec.go index 8662c8e..ebdf0df 100644 --- a/example/persistence/mongo/store/codec.go +++ b/example/persistence/mongo/store/codec.go @@ -34,8 +34,7 @@ func (d *DateTimeCodec) DecodeValue(_ bsoncodec.DecodeContext, vr bsonrw.ValueRe } var dateTimeVal DateTime - valueType := vr.Type() - switch valueType { + switch t := vr.Type(); t { case bsontype.DateTime: dt, err := vr.ReadDateTime() if err != nil { @@ -49,7 +48,7 @@ func (d *DateTimeCodec) DecodeValue(_ bsoncodec.DecodeContext, vr bsonrw.ValueRe } dateTimeVal = DateTime(decimalStr) default: - return fmt.Errorf("cannot decode %v into a DateTime", valueType) + return fmt.Errorf("cannot decode %v into a DateTime", t) } val.Set(reflect.ValueOf(dateTimeVal)) diff --git a/example/stream/jetstream/main.go b/example/stream/jetstream/main.go index 2c2a300..509c912 100644 --- a/example/stream/jetstream/main.go +++ b/example/stream/jetstream/main.go @@ -1,4 +1,4 @@ -package jetstream +package main import ( "context" diff --git a/example/stream/jetstreamraw/main.go b/example/stream/jetstreamraw/main.go index b812548..6a9618c 100644 --- a/example/stream/jetstreamraw/main.go +++ b/example/stream/jetstreamraw/main.go @@ -1,4 +1,4 @@ -package jetstream +package main import ( "net/http" diff --git a/example/telemetry/main.go b/example/telemetry/main.go index 3399177..b8c71d0 100644 --- a/example/telemetry/main.go +++ b/example/telemetry/main.go @@ -25,7 +25,7 @@ func main() { // enable trace output (default: false) // OTEL_EXPORTER_STDOUT_TRACE_ENABLED="true" // - // pretty print ouput (default: true) + // pretty print output (default: true) // OTEL_EXPORTER_STDOUT_PRETTY_PRINT="true" // // disable host metrics (default: true) diff --git a/super-linter.log b/super-linter.log index 9c81f58..0cfa246 100644 --- a/super-linter.log +++ b/super-linter.log @@ -66415,3 +66415,51416 @@ _=/bin/printenv 2021-11-19 09:50:46 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: go 2021-11-19 09:50:46 [INFO] --------------------------- 2021-11-19 09:50:46 [INFO] File:[/tmp/lint/example/config/main.go] +super-linter Log +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:22:16 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:22:16 [INFO] --------------------------------------------- +2021-11-19 12:22:16 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:22:16 [INFO] - Image Creation Date:[] +2021-11-19 12:22:16 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:22:16 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:22:16 [INFO] --------------------------------------------- +2021-11-19 12:22:16 [INFO] --------------------------------------------- +2021-11-19 12:22:16 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:22:16 [INFO] - https://github.com/github/super-linter +2021-11-19 12:22:16 [INFO] --------------------------------------------- +2021-11-19 12:22:16 [DEBUG] --------------------------------------------- +2021-11-19 12:22:16 [DEBUG] Linter Version Info: +2021-11-19 12:22:16 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:22:16 [DEBUG] --------------------------------------------- +2021-11-19 12:22:16 [INFO] -------------------------------------------- +2021-11-19 12:22:16 [INFO] Gathering GitHub information... +2021-11-19 12:22:16 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:22:16 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:22:16 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:22:16 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:22:16 [INFO] -------------------------------------------- +2021-11-19 12:22:16 [INFO] Gathering user validation information... +2021-11-19 12:22:16 [FATAL] Behavior not supported, please either only include (VALIDATE=true) or exclude (VALIDATE=false) linters, but not both +super-linter Log +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:22:49 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:22:50 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:22:50 [INFO] --------------------------------------------- +2021-11-19 12:22:50 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:22:50 [INFO] - Image Creation Date:[] +2021-11-19 12:22:50 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:22:50 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:22:50 [INFO] --------------------------------------------- +2021-11-19 12:22:50 [INFO] --------------------------------------------- +2021-11-19 12:22:50 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:22:50 [INFO] - https://github.com/github/super-linter +2021-11-19 12:22:50 [INFO] --------------------------------------------- +2021-11-19 12:22:50 [DEBUG] --------------------------------------------- +2021-11-19 12:22:50 [DEBUG] Linter Version Info: +2021-11-19 12:22:50 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:22:50 [DEBUG] --------------------------------------------- +2021-11-19 12:22:50 [INFO] -------------------------------------------- +2021-11-19 12:22:50 [INFO] Gathering GitHub information... +2021-11-19 12:22:50 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:22:50 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:22:50 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:22:50 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:22:50 [INFO] -------------------------------------------- +2021-11-19 12:22:50 [INFO] Gathering user validation information... +2021-11-19 12:22:50 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for BASH linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for DART linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:22:50 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:22:50 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:22:50 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for R linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for XML linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:22:51 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:22:51 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:22:51 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:22:51 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:22:51 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:22:51 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:22:51 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:22:51 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:22:51 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:22:51 [DEBUG] --------------------------------------------- +2021-11-19 12:22:51 [DEBUG] Runner:[root] +2021-11-19 12:22:51 [DEBUG] ENV: +2021-11-19 12:22:51 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SHELL_SHFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=105b0976042c +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.2YPd23HKbV +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=true +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:22:51 [DEBUG] --------------------------------------------- +2021-11-19 12:22:51 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:51 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:22:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:51 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:22:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:22:51 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:22:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:22:51 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:22:51 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:22:51 [DEBUG] Loading rules for ARM... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:51 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:22:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:51 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:22:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:22:51 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:22:51 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:22:51 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:22:51 [DEBUG] Loading rules for BASH... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:22:51 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:22:51 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:22:51 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:22:51 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:22:51 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:51 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:22:51 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:51 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:22:51 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:22:52 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:22:52 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:22:52 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:22:52 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for CPP... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:22:52 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:22:52 [DEBUG] Loading rules for CSS... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:22:52 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for DART... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for DART... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:22:52 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:22:52 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:22:52 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:22:52 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:22:52 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:22:52 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for ENV... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:22:52 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:22:52 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:22:52 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:22:52 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:22:52 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for GO... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GO... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:22:52 [INFO] ---------------------------------------------- +2021-11-19 12:22:52 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:22:52 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:22:52 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:22:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:52 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:22:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:52 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:22:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:52 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:22:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:22:52 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:22:52 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:22:52 [DEBUG] Loading rules for HTML... +2021-11-19 12:22:52 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:22:53 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for JAVA... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:22:53 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:53 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:53 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:22:53 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for JSON... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:22:53 [DEBUG] Loading rules for JSONC... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:22:53 [DEBUG] Loading rules for JSX... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:53 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:53 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:22:53 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:22:53 [DEBUG] Loading rules for LATEX... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:22:53 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for LUA... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:22:53 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:22:53 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:22:53 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:22:53 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:22:53 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:22:53 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for PERL... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:22:53 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:22:53 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:22:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:53 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:22:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:53 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:22:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:22:53 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:22:53 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:22:53 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:22:53 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:22:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:53 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:22:54 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:22:54 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:22:54 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:22:54 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:22:54 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:22:54 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:22:54 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:22:54 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:22:54 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:22:54 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for R... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for R... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:22:54 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for RAKU... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:22:54 [DEBUG] Loading rules for RUBY... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:22:54 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:22:54 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:22:54 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:22:54 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:22:54 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:22:54 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:22:54 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:22:54 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:54 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:22:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:54 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:22:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:54 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:22:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:22:54 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:22:54 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:22:54 [DEBUG] Loading rules for STATES... +2021-11-19 12:22:54 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:22:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:22:55 [DEBUG] Loading rules for SQL... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:22:55 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:22:55 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:22:55 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:22:55 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:22:55 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:22:55 [DEBUG] Loading rules for TSX... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:55 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:55 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:22:55 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:22:55 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:22:55 [DEBUG] Loading rules for XML... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for XML... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:22:55 [DEBUG] Loading rules for YAML... +2021-11-19 12:22:55 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:22:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:22:55 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:22:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:22:55 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:22:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:22:55 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:22:55 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:22:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:22:55 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:22:55 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:22:55 [DEBUG] ENV:[browser] +2021-11-19 12:22:55 [DEBUG] ENV:[es6] +2021-11-19 12:22:55 [DEBUG] ENV:[jest] +2021-11-19 12:22:55 [DEBUG] ENV:[browser] +2021-11-19 12:22:56 [DEBUG] ENV:[es6] +2021-11-19 12:22:56 [DEBUG] ENV:[jest] +2021-11-19 12:22:56 [DEBUG] --- Linter commands --- +2021-11-19 12:22:56 [DEBUG] ----------------------- +2021-11-19 12:22:56 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:22:56 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:22:56 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:22:56 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:22:56 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:22:56 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:22:56 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:22:56 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:22:56 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:22:56 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:22:56 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:22:56 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:22:56 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:22:56 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:22:56 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:22:56 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:22:56 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:22:56 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:22:56 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:22:56 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:22:56 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:22:56 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:22:56 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:22:56 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:22:56 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:22:56 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:22:56 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:22:56 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:22:56 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:22:56 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:22:56 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:22:56 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:22:56 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:22:56 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:22:56 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:22:56 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:22:56 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:22:56 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:22:56 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:22:56 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:22:56 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:22:56 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:22:56 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:22:56 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:22:56 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:22:56 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:22:56 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:22:56 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:22:56 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:22:56 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:22:56 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:22:56 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:22:56 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:22:56 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:22:56 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:22:56 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:22:56 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:22:56 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:22:56 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:22:56 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:22:56 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:22:56 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:22:56 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:22:56 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:22:56 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:22:56 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:22:56 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:22:56 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:22:56 [DEBUG] --------------------------------------------- +2021-11-19 12:22:56 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:22:56 [DEBUG] Building file list... +2021-11-19 12:22:56 [DEBUG] Validate all code base: true... +2021-11-19 12:22:56 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:22:56 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:22:56 [DEBUG] IGNORE_GITIGNORED_FILES: false... +2021-11-19 12:22:56 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:22:56 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:22:56 [DEBUG] ---------------------------------------------- +2021-11-19 12:22:56 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:22:56 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:22:56 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:22:57 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:22:57 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:22:57 [DEBUG] ----------------------- +2021-11-19 12:22:57 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:22:57 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:22:57 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:22:57 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:22:57 [DEBUG] --------------------------------------------- +2021-11-19 12:22:57 [INFO] --------------------------------- +2021-11-19 12:22:57 [INFO] ------ File list to check: ------ +2021-11-19 12:22:57 [INFO] --------------------------------- +2021-11-19 12:22:57 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:22:57 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:22:57 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:22:57 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:22:57 [DEBUG]  +2021-11-19 12:22:57 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:22:57 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:22:57 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:22:57 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:22:57 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:22:57 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:22:57 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:22:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:22:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:22:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:22:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:22:58 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:22:58 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:22:58 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:22:58 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:22:58 [DEBUG]  +2021-11-19 12:22:58 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:22:59 [DEBUG]  +2021-11-19 12:22:59 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:22:59 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:22:59 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:23:00 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:23:00 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:23:00 [DEBUG]  +2021-11-19 12:23:00 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:23:01 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:23:01 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:23:01 [DEBUG]  +2021-11-19 12:23:01 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:23:02 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:23:02 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:23:02 [DEBUG]  +2021-11-19 12:23:02 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:23:03 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:23:03 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:23:03 [DEBUG]  +2021-11-19 12:23:03 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:23:04 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:23:04 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:23:04 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:23:04 [DEBUG]  +2021-11-19 12:23:04 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:23:05 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:23:05 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:23:05 [DEBUG]  +2021-11-19 12:23:05 [INFO] ---------------------------------------------- +2021-11-19 12:23:05 [INFO] Successfully gathered list of files... +2021-11-19 12:23:05 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:23:05 [DEBUG] ------------------------------------ +2021-11-19 12:23:05 [DEBUG] ENV: +2021-11-19 12:23:05 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SHELL_SHFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=105b0976042c +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.2YPd23HKbV +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=true +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:23:05 [DEBUG] ------------------------------------ +2021-11-19 12:23:05 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the ARM language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the BASH language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:23:05 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:23:05 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:23:05 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:23:05 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:23:05 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:05 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:23:05 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:05 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the CPP language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the CSS language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the DART language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:23:06 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:06 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:23:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:06 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:23:06 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:23:06 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:23:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:23:06 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:06 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:23:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:06 [INFO]  +2021-11-19 12:23:06 [INFO] ---------------------------------------------- +2021-11-19 12:23:06 [INFO] ---------------------------------------------- +2021-11-19 12:23:06 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:06 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:23:06 [INFO] ---------------------------------------------- +2021-11-19 12:23:06 [INFO] ---------------------------------------------- +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:23:06 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:06 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:06 [INFO] --------------------------- +2021-11-19 12:23:06 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:23:06 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:23:06 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:06 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:06 [INFO] --------------------------- +2021-11-19 12:23:06 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:23:06 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:23:06 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:06 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:06 [INFO] --------------------------- +2021-11-19 12:23:06 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:23:06 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:06 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:06 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:06 [INFO] --------------------------- +2021-11-19 12:23:06 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:23:06 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:23:06 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:06 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:06 [INFO] --------------------------- +2021-11-19 12:23:06 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:23:06 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:06 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:23:07 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:23:07 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:23:07 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:23:07 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:23:07 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:23:07 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:23:07 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:23:07 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:23:07 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:23:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:23:07 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:23:07 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:07 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:23:07 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:07 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:07 [INFO] --------------------------- +2021-11-19 12:23:07 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:23:07 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:23:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:08 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:23:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:08 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:08 [INFO] --------------------------- +2021-11-19 12:23:08 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:23:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:23:09 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:23:09 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:23:09 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:23:09 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:23:09 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:23:09 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:23:09 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:23:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:23:09 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:23:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:23:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:23:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:09 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:09 [INFO] --------------------------- +2021-11-19 12:23:09 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:23:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:09 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:23:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:23:10 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:23:10 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:23:10 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:23:10 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:23:10 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:23:10 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:23:10 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:23:10 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:23:10 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:23:10 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:23:10 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:23:10 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:10 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:10 [INFO] --------------------------- +2021-11-19 12:23:10 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:23:10 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:23:11 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:23:11 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:23:11 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:23:11 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:23:11 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:23:11 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:23:11 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:23:11 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:23:11 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:23:11 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:23:11 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:23:11 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:23:11 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:11 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:23:11 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:11 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:11 [INFO] --------------------------- +2021-11-19 12:23:11 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:23:11 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:23:12 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:23:12 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:23:12 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:23:12 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:23:12 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:23:12 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:23:12 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:23:12 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:23:12 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:23:12 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:23:12 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:23:12 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:23:12 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:12 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:12 [INFO] --------------------------- +2021-11-19 12:23:12 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:23:13 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:23:13 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:23:13 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:23:13 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:23:13 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:23:13 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:23:13 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:23:13 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:23:13 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:23:13 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:23:13 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:23:13 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:23:13 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:13 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:23:13 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:13 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:13 [INFO] --------------------------- +2021-11-19 12:23:13 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:23:14 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:23:14 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:23:14 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:23:14 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:23:14 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:23:14 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:23:14 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:23:14 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:23:14 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:23:14 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:23:14 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:23:14 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:23:14 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:23:14 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:14 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:14 [INFO] --------------------------- +2021-11-19 12:23:14 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:23:14 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:14 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:23:15 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:23:15 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:23:15 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:23:15 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:23:15 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:23:15 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:23:15 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:23:15 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:23:15 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:23:15 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:23:15 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:23:15 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:23:15 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:15 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:15 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:23:15 [INFO] --------------------------- +2021-11-19 12:23:15 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:23:15 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:23:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:16 [DEBUG] Running linter for the ENV language... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:23:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:23:16 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:23:16 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:23:16 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:23:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:16 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:23:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:23:16 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:16 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:23:16 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:16 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:16 [INFO]  +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:16 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:23:16 [INFO] --------------------------- +2021-11-19 12:23:16 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:23:16 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:23:16 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:23:16 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:23:16 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:23:16 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:23:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:23:16 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:23:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:23:16 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:16 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:23:16 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:16 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:16 [INFO]  +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:16 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [INFO] ---------------------------------------------- +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:16 [INFO] --------------------------- +2021-11-19 12:23:16 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:23:16 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:23:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:16 [INFO] --------------------------- +2021-11-19 12:23:16 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:23:16 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:23:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:16 [INFO] --------------------------- +2021-11-19 12:23:16 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:23:16 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:23:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:16 [INFO] --------------------------- +2021-11-19 12:23:16 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:23:16 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:23:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:16 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:23:16 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:16 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:23:17 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:23:17 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:23:17 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:23:17 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:23:17 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:23:17 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:23:17 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:23:17 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:23:17 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:23:17 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:23:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:17 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:23:17 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:17 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:23:17 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:17 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:17 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:23:18 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:23:18 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:23:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:18 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:18 [INFO] --------------------------- +2021-11-19 12:23:18 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:23:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:23:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:23:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:23:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:23:19 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:23:19 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:23:19 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:23:19 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:23:19 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:23:19 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:23:19 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:23:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:23:19 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:19 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:19 [INFO] --------------------------- +2021-11-19 12:23:19 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:23:19 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:23:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:23:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:23:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:23:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:23:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:23:20 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:23:20 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:23:20 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:23:20 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:23:20 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:23:20 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:23:20 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:23:20 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:20 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:20 [INFO] --------------------------- +2021-11-19 12:23:20 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:23:20 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:23:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:20 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:23:21 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:23:21 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:23:21 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:23:21 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:23:21 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:23:21 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:23:21 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:23:21 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:23:21 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:23:21 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:23:21 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:23:21 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:21 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:21 [INFO] --------------------------- +2021-11-19 12:23:21 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:23:21 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:23:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:21 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:23:22 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:23:22 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:23:22 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:23:22 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:23:22 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:23:22 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:23:22 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:23:22 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:23:22 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:23:22 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:23:22 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:23:22 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:22 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:22 [INFO] --------------------------- +2021-11-19 12:23:22 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:23:22 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:23:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:23:23 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:23:23 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:23:23 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:23:23 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:23:23 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:23:23 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:23:23 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:23:23 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:23:23 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:23:23 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:23:23 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:23:23 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:23:23 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:23 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:23 [INFO] --------------------------- +2021-11-19 12:23:23 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:23:23 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:23:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:23:24 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:23:24 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:23:24 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:23:24 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:23:24 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:23:24 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:23:24 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:23:24 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:23:24 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:23:24 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:23:24 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:23:24 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:24 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:23:24 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:23:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:24 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:23:24 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:24 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:24 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:23:25 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:23:25 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:23:25 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:23:25 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:23:25 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:23:25 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:23:25 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:23:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:25 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:23:25 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:25 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:25 [INFO] --------------------------- +2021-11-19 12:23:25 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:23:28 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:23:28 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:28 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:23:29 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:23:29 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:23:29 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:23:29 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:23:29 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:23:29 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:23:29 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:23:29 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:23:29 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:23:29 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:23:29 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:23:29 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:23:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:29 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:23:29 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:29 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:23:29 [INFO] --------------------------- +2021-11-19 12:23:29 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:23:30 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:23:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:30 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the GO language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:23:30 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the HTML language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:23:30 [DEBUG] Running linter for the JSON language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the JSX language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the LUA language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:23:30 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:30 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:23:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:23:30 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:23:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:23:30 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:23:30 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:23:30 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:23:30 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:30 [INFO]  +2021-11-19 12:23:30 [INFO] ---------------------------------------------- +2021-11-19 12:23:30 [INFO] ---------------------------------------------- +2021-11-19 12:23:30 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:23:30 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:23:30 [INFO] ---------------------------------------------- +2021-11-19 12:23:30 [INFO] ---------------------------------------------- +2021-11-19 12:23:30 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:23:31 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:31 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:23:31 [INFO] --------------------------- +2021-11-19 12:23:31 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:23:32 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 12:23:32 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 12:23:32 [ERROR] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:23:32 [DEBUG] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:23:32 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:23:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:23:32 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:32 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:23:32 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:23:32 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:23:32 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:23:32 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:23:32 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:23:32 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:32 [INFO]  +2021-11-19 12:23:32 [INFO] ---------------------------------------------- +2021-11-19 12:23:32 [INFO] ---------------------------------------------- +2021-11-19 12:23:32 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:23:32 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:23:32 [INFO] ---------------------------------------------- +2021-11-19 12:23:32 [INFO] ---------------------------------------------- +2021-11-19 12:23:32 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:23:32 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:32 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:23:32 [INFO] --------------------------- +2021-11-19 12:23:32 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:23:33 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:23:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:23:33 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PERL language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:23:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:23:33 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:23:33 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:23:33 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:23:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:33 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:23:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:33 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the R language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to shfmt... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to shfmt -d... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SHELL_SHFMT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SHELL_SHFMT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking shfmt linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SHELL_SHFMT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the STATES language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SQL language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:23:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:34 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:23:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:23:34 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:23:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:23:34 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:23:34 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:23:34 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TSX language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the XML language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:23:35 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:23:35 [DEBUG] Running linter for the YAML language... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:23:35 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:23:35 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:23:35 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:23:35 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:23:35 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:23:35 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:23:35 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:23:35 [INFO]  +2021-11-19 12:23:35 [INFO] ---------------------------------------------- +2021-11-19 12:23:35 [INFO] ---------------------------------------------- +2021-11-19 12:23:35 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:23:35 [INFO] Linting [YAML] files... +2021-11-19 12:23:35 [INFO] ---------------------------------------------- +2021-11-19 12:23:35 [INFO] ---------------------------------------------- +2021-11-19 12:23:35 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:23:35 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:35 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:23:35 [INFO] --------------------------- +2021-11-19 12:23:35 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:23:35 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:23:35 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:23:35 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:23:35 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:35 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:23:35 [INFO] --------------------------- +2021-11-19 12:23:35 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:23:35 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:23:35 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:23:35 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:23:35 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:36 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:23:36 [INFO] --------------------------- +2021-11-19 12:23:36 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:23:36 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:23:36 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:23:36 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:23:36 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:36 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:23:36 [INFO] --------------------------- +2021-11-19 12:23:36 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:23:36 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:23:36 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:23:36 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:23:36 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:23:36 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:23:36 [INFO] --------------------------- +2021-11-19 12:23:36 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:23:36 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:23:36 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:23:36 [INFO] ---------------------------------------------- +2021-11-19 12:23:36 [INFO] ---------------------------------------------- +2021-11-19 12:23:36 [INFO] The script has completed +2021-11-19 12:23:36 [INFO] ---------------------------------------------- +2021-11-19 12:23:36 [INFO] ---------------------------------------------- +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:23:36 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:23:36 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:23:36 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:23:36 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:25:03 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:25:03 [INFO] --------------------------------------------- +2021-11-19 12:25:03 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:25:03 [INFO] - Image Creation Date:[] +2021-11-19 12:25:03 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:25:03 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:25:03 [INFO] --------------------------------------------- +2021-11-19 12:25:03 [INFO] --------------------------------------------- +2021-11-19 12:25:03 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:25:03 [INFO] - https://github.com/github/super-linter +2021-11-19 12:25:03 [INFO] --------------------------------------------- +2021-11-19 12:25:03 [DEBUG] --------------------------------------------- +2021-11-19 12:25:03 [DEBUG] Linter Version Info: +2021-11-19 12:25:03 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:25:03 [DEBUG] --------------------------------------------- +2021-11-19 12:25:03 [INFO] -------------------------------------------- +2021-11-19 12:25:03 [INFO] Gathering GitHub information... +2021-11-19 12:25:03 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:25:03 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:25:03 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:25:03 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:25:03 [INFO] -------------------------------------------- +2021-11-19 12:25:03 [INFO] Gathering user validation information... +2021-11-19 12:25:03 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for BASH linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for DART linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:25:03 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:25:03 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:25:03 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for R linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for XML linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:25:04 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:25:04 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:25:04 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:25:04 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:25:04 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:25:04 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:25:04 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:25:04 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:25:04 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:25:05 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:25:05 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:25:05 [DEBUG] --------------------------------------------- +2021-11-19 12:25:05 [DEBUG] Runner:[root] +2021-11-19 12:25:05 [DEBUG] ENV: +2021-11-19 12:25:05 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +EDITORCONFIG_FILE_NAME=.editorconfig +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SHELL_SHFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=ba8464dc5d5c +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.J2r66N47OJ +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=true +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:25:05 [DEBUG] --------------------------------------------- +2021-11-19 12:25:05 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:25:05 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:25:05 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for ARM... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:25:05 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for BASH... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:25:05 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:25:05 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:25:05 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:25:05 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:25:05 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:25:05 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:25:05 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for CPP... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:25:05 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:25:05 [DEBUG] Loading rules for CSS... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:25:05 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for DART... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for DART... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:25:05 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:25:05 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:05 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:25:05 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:05 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:25:05 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:25:05 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:25:05 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:25:05 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:25:05 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:25:05 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:05 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:25:05 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:06 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:25:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:06 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:25:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:25:06 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:25:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:25:06 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:25:06 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:25:06 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:25:06 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:25:06 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:06 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:25:06 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:06 [DEBUG] EDITORCONFIG language rule file (.editorconfig) has .editorconfig name and editorconfig extension +2021-11-19 12:25:06 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:06 [DEBUG] Checking if the user-provided:[.editorconfig] and exists at:[/tmp/lint/.github/linters/.editorconfig] +2021-11-19 12:25:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.editorconfig]. +2021-11-19 12:25:06 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.editorconfig], nor the file:[], using Default rules at:[/action/lib/.automation/.editorconfig] +2021-11-19 12:25:06 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.editorconfig] +2021-11-19 12:25:06 [FATAL] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.editorconfig) doesn't exist. Terminating... +super-linter Log +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:25:33 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:25:34 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:25:34 [INFO] --------------------------------------------- +2021-11-19 12:25:34 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:25:34 [INFO] - Image Creation Date:[] +2021-11-19 12:25:34 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:25:34 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:25:34 [INFO] --------------------------------------------- +2021-11-19 12:25:34 [INFO] --------------------------------------------- +2021-11-19 12:25:34 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:25:34 [INFO] - https://github.com/github/super-linter +2021-11-19 12:25:34 [INFO] --------------------------------------------- +2021-11-19 12:25:34 [DEBUG] --------------------------------------------- +2021-11-19 12:25:34 [DEBUG] Linter Version Info: +2021-11-19 12:25:34 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:25:34 [DEBUG] --------------------------------------------- +2021-11-19 12:25:34 [INFO] -------------------------------------------- +2021-11-19 12:25:34 [INFO] Gathering GitHub information... +2021-11-19 12:25:34 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:25:34 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:25:34 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:25:34 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:25:34 [INFO] -------------------------------------------- +2021-11-19 12:25:34 [INFO] Gathering user validation information... +2021-11-19 12:25:34 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for BASH linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for DART linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for R linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:25:34 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:25:34 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:25:34 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SHELL_SHFMT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SHELL_SHFMT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SHELL_SHFMT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for XML linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:25:35 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:25:35 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:25:35 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:25:35 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:25:35 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:25:35 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:25:35 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SHELL_SHFMT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:25:35 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:25:35 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:25:35 [DEBUG] --------------------------------------------- +2021-11-19 12:25:35 [DEBUG] Runner:[root] +2021-11-19 12:25:35 [DEBUG] ENV: +2021-11-19 12:25:35 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SHELL_SHFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=f4347d807e70 +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.dadsBZfXv8 +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=true +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:25:35 [DEBUG] --------------------------------------------- +2021-11-19 12:25:35 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:35 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:25:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:35 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:25:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:25:35 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:25:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:25:35 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:25:35 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:25:35 [DEBUG] Loading rules for ARM... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:35 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:25:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:35 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:25:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:25:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:25:35 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:25:35 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:25:35 [DEBUG] Loading rules for BASH... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:25:35 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:25:35 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:25:35 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:25:35 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:25:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:35 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:25:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:25:36 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:25:36 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:25:36 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:25:36 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for CPP... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:25:36 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:25:36 [DEBUG] Loading rules for CSS... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:25:36 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for DART... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for DART... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:25:36 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:25:36 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:25:36 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:25:36 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:25:36 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:25:36 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for ENV... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:25:36 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:25:36 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:25:36 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:25:36 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:25:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:25:36 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for GO... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GO... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:36 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:25:36 [INFO] ---------------------------------------------- +2021-11-19 12:25:36 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:25:36 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:25:36 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:25:36 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:25:36 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:25:36 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:25:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:36 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:25:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:36 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:25:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:25:37 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for HTML... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:25:37 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for JAVA... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:25:37 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:37 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:37 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:25:37 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for JSON... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:25:37 [DEBUG] Loading rules for JSONC... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:25:37 [DEBUG] Loading rules for JSX... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:37 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:37 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:25:37 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:25:37 [DEBUG] Loading rules for LATEX... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:25:37 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for LUA... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:25:37 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:25:37 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:25:37 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:37 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:25:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:25:37 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:25:37 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:25:37 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:25:37 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:25:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:37 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:25:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:37 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:25:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:25:38 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:25:38 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PERL... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:25:38 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:25:38 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:25:38 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:25:38 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:25:38 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:25:38 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:25:38 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:25:38 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:25:38 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:25:38 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:25:38 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:25:38 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:25:38 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for R... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for R... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:25:38 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:25:38 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:25:38 [DEBUG] Loading rules for RAKU... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:25:38 [DEBUG] Loading rules for RUBY... +2021-11-19 12:25:38 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:25:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:38 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:25:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:38 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:25:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:38 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:25:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:25:38 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:25:39 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:25:39 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:25:39 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:25:39 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:25:39 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:25:39 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:25:39 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:25:39 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for STATES... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:25:39 [DEBUG] Loading rules for SQL... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:25:39 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:25:39 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:25:39 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:25:39 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:25:39 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:25:39 [DEBUG] Loading rules for TSX... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:39 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:39 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:25:39 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:25:39 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:25:39 [DEBUG] Loading rules for XML... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for XML... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:25:39 [DEBUG] Loading rules for YAML... +2021-11-19 12:25:39 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:25:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:25:39 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:25:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:25:39 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:25:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:25:39 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:25:39 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:25:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:25:40 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:25:40 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:25:40 [DEBUG] ENV:[browser] +2021-11-19 12:25:40 [DEBUG] ENV:[es6] +2021-11-19 12:25:40 [DEBUG] ENV:[jest] +2021-11-19 12:25:40 [DEBUG] ENV:[browser] +2021-11-19 12:25:40 [DEBUG] ENV:[es6] +2021-11-19 12:25:40 [DEBUG] ENV:[jest] +2021-11-19 12:25:40 [DEBUG] --- Linter commands --- +2021-11-19 12:25:40 [DEBUG] ----------------------- +2021-11-19 12:25:40 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:25:40 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:25:40 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:25:40 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:25:40 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:25:40 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:25:40 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:25:40 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:25:40 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:25:40 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:25:40 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:25:40 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:25:40 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:25:40 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:25:40 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:25:40 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:25:40 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:25:40 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:25:40 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:25:40 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:25:40 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:25:40 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:25:40 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:25:40 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:25:40 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:25:40 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:25:40 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:25:40 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:25:40 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:25:40 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:25:40 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:25:40 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:25:40 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:25:40 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:25:40 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:25:40 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:25:40 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:25:40 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:25:40 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:25:40 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:25:40 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:25:40 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:25:40 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:25:40 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:25:40 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:25:40 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:25:40 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:25:40 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:25:40 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:25:40 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:25:40 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:25:40 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:25:40 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:25:40 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:25:40 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:25:40 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:25:40 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:25:40 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:25:40 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:25:40 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:25:40 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:25:40 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:25:40 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:25:40 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:25:40 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:25:40 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:25:40 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:25:40 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:25:40 [DEBUG] --------------------------------------------- +2021-11-19 12:25:40 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:25:40 [DEBUG] Building file list... +2021-11-19 12:25:40 [DEBUG] Validate all code base: true... +2021-11-19 12:25:40 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:25:40 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:25:40 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:25:40 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:25:40 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:25:40 [DEBUG] ---------------------------------------------- +2021-11-19 12:25:40 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:25:41 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:25:41 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:25:41 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:25:41 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:25:41 [DEBUG] ----------------------- +2021-11-19 12:25:41 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:25:41 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:25:41 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:25:41 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:25:41 [DEBUG] --------------------------------------------- +2021-11-19 12:25:41 [INFO] --------------------------------- +2021-11-19 12:25:41 [INFO] ------ File list to check: ------ +2021-11-19 12:25:41 [INFO] --------------------------------- +2021-11-19 12:25:41 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:25:41 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:25:41 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:25:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:25:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:25:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:25:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:25:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:25:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:25:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:25:42 [DEBUG]  +2021-11-19 12:25:42 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:25:42 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:25:42 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:25:42 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:25:43 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:43 [DEBUG]  +2021-11-19 12:25:43 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:43 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:25:44 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:25:44 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:25:44 [DEBUG]  +2021-11-19 12:25:44 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:25:45 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:25:45 [DEBUG]  +2021-11-19 12:25:45 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:25:45 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:25:46 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:25:46 [DEBUG]  +2021-11-19 12:25:46 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:25:46 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:25:47 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:25:47 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:25:47 [DEBUG]  +2021-11-19 12:25:47 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:25:48 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:25:48 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:25:48 [DEBUG]  +2021-11-19 12:25:48 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:25:49 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:25:49 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:25:49 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:25:49 [DEBUG]  +2021-11-19 12:25:49 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:25:50 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:25:50 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:25:50 [DEBUG]  +2021-11-19 12:25:50 [INFO] ---------------------------------------------- +2021-11-19 12:25:50 [INFO] Successfully gathered list of files... +2021-11-19 12:25:50 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:25:50 [DEBUG] ------------------------------------ +2021-11-19 12:25:50 [DEBUG] ENV: +2021-11-19 12:25:50 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SHELL_SHFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=f4347d807e70 +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.dadsBZfXv8 +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=true +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:25:50 [DEBUG] ------------------------------------ +2021-11-19 12:25:50 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the ARM language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the BASH language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CPP language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:25:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:25:50 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:25:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:25:50 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:25:50 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:25:50 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:25:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:50 [DEBUG] Running linter for the CSS language... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:25:51 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:25:51 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:25:51 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:25:51 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:25:51 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:51 [DEBUG] Running linter for the DART language... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:25:51 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:25:51 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:25:51 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:25:51 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:25:51 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:51 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:25:51 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:25:51 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:25:51 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:25:51 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:25:51 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:51 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:25:51 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:25:51 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:25:51 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:25:51 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:25:51 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:25:51 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:25:51 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:25:51 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:25:51 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:25:51 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:25:51 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:25:51 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:25:51 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:25:51 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:25:51 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:25:51 [INFO]  +2021-11-19 12:25:51 [INFO] ---------------------------------------------- +2021-11-19 12:25:51 [INFO] ---------------------------------------------- +2021-11-19 12:25:51 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:25:51 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:25:51 [INFO] ---------------------------------------------- +2021-11-19 12:25:51 [INFO] ---------------------------------------------- +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:25:51 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:25:51 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:25:51 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:25:51 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:25:51 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:25:51 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:25:51 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:25:51 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:51 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:25:51 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:51 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:51 [INFO] --------------------------- +2021-11-19 12:25:51 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:25:51 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:25:52 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:25:52 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:25:52 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:25:52 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:25:52 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:25:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:25:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:25:52 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:25:52 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:25:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:25:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:25:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:52 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:52 [INFO] --------------------------- +2021-11-19 12:25:52 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:25:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:53 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:25:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:25:53 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:53 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:25:54 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:25:54 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:25:54 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:25:54 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:25:54 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:25:54 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:25:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:25:54 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:25:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:25:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:25:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:25:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:25:54 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:54 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:25:54 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:54 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:54 [INFO] --------------------------- +2021-11-19 12:25:54 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:25:54 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:25:55 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:25:55 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:25:55 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:25:55 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:25:55 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:25:55 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:25:55 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:25:55 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:25:55 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:25:55 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:25:55 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:25:55 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:25:55 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:55 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:55 [INFO] --------------------------- +2021-11-19 12:25:55 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:25:55 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:25:55 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:55 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:25:56 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:25:56 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:25:56 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:25:56 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:25:56 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:25:56 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:25:56 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:25:56 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:25:56 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:25:56 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:25:56 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:25:56 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:25:56 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:25:56 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:56 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:56 [INFO] --------------------------- +2021-11-19 12:25:56 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:25:57 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:25:57 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:25:57 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:25:57 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:25:57 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:25:57 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:25:57 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:25:57 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:25:57 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:25:57 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:25:57 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:25:57 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:25:57 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:25:57 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:57 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:57 [INFO] --------------------------- +2021-11-19 12:25:57 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:25:57 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:25:58 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:25:58 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:25:58 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:25:58 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:25:58 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:25:58 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:25:58 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:25:58 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:25:58 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:25:58 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:25:58 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:25:58 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:25:58 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:58 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:58 [INFO] --------------------------- +2021-11-19 12:25:58 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:25:58 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:25:59 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:25:59 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:25:59 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:25:59 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:25:59 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:25:59 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:25:59 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:25:59 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:25:59 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:25:59 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:25:59 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:25:59 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:25:59 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:25:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:25:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:25:59 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:25:59 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:25:59 [INFO] --------------------------- +2021-11-19 12:25:59 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:26:00 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:26:00 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:26:00 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:26:00 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:26:00 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:26:00 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:26:00 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:26:00 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:26:00 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:26:00 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:26:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:00 [DEBUG] Running linter for the ENV language... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:26:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:26:00 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:26:00 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:26:00 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:26:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:00 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:26:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:26:00 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:00 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:26:00 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:00 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:26:00 [INFO]  +2021-11-19 12:26:00 [INFO] ---------------------------------------------- +2021-11-19 12:26:00 [INFO] ---------------------------------------------- +2021-11-19 12:26:00 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:00 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:26:00 [INFO] ---------------------------------------------- +2021-11-19 12:26:00 [INFO] ---------------------------------------------- +2021-11-19 12:26:00 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:00 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:00 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:26:00 [INFO] --------------------------- +2021-11-19 12:26:00 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:26:00 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:26:00 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:26:00 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:26:00 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:26:00 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:26:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:26:00 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:26:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:26:01 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:26:01 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:26:01 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:26:01 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:26:01 [INFO]  +2021-11-19 12:26:01 [INFO] ---------------------------------------------- +2021-11-19 12:26:01 [INFO] ---------------------------------------------- +2021-11-19 12:26:01 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:26:01 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:26:01 [INFO] ---------------------------------------------- +2021-11-19 12:26:01 [INFO] ---------------------------------------------- +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:26:01 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:26:01 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:26:01 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:26:01 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:26:01 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:26:01 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:26:01 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:26:01 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:26:01 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:26:01 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:26:01 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:26:01 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:01 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:01 [INFO] --------------------------- +2021-11-19 12:26:01 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:26:01 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:26:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:01 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:26:02 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:26:02 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:26:02 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:26:02 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:26:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:26:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:02 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:02 [INFO] --------------------------- +2021-11-19 12:26:02 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:26:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:26:03 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:26:03 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:26:03 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:26:03 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:03 [INFO] --------------------------- +2021-11-19 12:26:03 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:26:03 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:26:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:26:04 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:26:04 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:26:04 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:26:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:26:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:26:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:26:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:26:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:26:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:26:04 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:26:04 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:04 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:26:04 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:26:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:04 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:26:04 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:04 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:04 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:26:05 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:26:05 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:26:05 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:26:05 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:26:05 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:26:05 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:26:05 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:26:05 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:26:05 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:26:05 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:26:05 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:26:05 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:26:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:05 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:26:05 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:05 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:05 [INFO] --------------------------- +2021-11-19 12:26:05 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:26:05 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:26:06 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:26:06 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:26:06 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:26:06 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:26:06 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:26:06 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:26:06 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:26:06 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:26:06 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:26:06 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:26:06 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:26:06 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:06 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:06 [INFO] --------------------------- +2021-11-19 12:26:06 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:26:06 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:26:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:26:07 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:26:07 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:26:07 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:26:07 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:26:07 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:26:07 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:26:07 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:26:07 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:26:07 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:07 [INFO] --------------------------- +2021-11-19 12:26:07 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:26:07 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:26:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:26:07 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:07 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:26:08 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:26:08 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:26:08 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:26:08 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:26:08 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:26:08 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:26:08 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:26:08 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:26:08 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:26:08 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:26:08 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:26:08 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:26:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:26:08 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:08 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:08 [INFO] --------------------------- +2021-11-19 12:26:08 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:26:09 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:26:09 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:26:09 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:26:09 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:26:09 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:26:09 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:26:09 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:26:09 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:26:09 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:26:09 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:26:09 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:26:09 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:26:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:26:09 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:09 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:09 [INFO] --------------------------- +2021-11-19 12:26:09 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:26:10 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:26:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:26:10 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:10 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:10 [INFO] --------------------------- +2021-11-19 12:26:10 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:26:10 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:26:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:26:10 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:10 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:10 [INFO] --------------------------- +2021-11-19 12:26:10 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:26:10 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:26:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:10 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:26:10 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:10 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:10 [INFO] --------------------------- +2021-11-19 12:26:10 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:26:15 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:26:15 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:26:15 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:26:15 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:26:15 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:26:15 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:26:15 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:26:15 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:26:15 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:26:15 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:15 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:15 [INFO] --------------------------- +2021-11-19 12:26:15 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:26:15 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:26:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:15 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:26:15 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:16 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:16 [INFO] --------------------------- +2021-11-19 12:26:16 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:26:16 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:26:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:26:16 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:16 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:16 [INFO] --------------------------- +2021-11-19 12:26:16 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:26:16 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:26:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:26:16 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:16 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:26:16 [INFO] --------------------------- +2021-11-19 12:26:16 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:26:16 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:26:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:16 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the GO language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:26:16 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the HTML language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:26:16 [DEBUG] Running linter for the JSON language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the JSX language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:26:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:26:16 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:26:16 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:16 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:26:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:16 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:26:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:26:16 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:26:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:26:17 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:26:17 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:26:17 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:26:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:17 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:26:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:26:17 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:26:17 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:26:17 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:26:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:17 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:26:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:26:17 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:26:17 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:26:17 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:26:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:17 [DEBUG] Running linter for the LUA language... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:26:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:26:17 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:26:17 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:26:17 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:26:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:17 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:26:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:26:17 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:26:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:26:17 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:26:17 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:26:17 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:26:17 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:26:17 [INFO]  +2021-11-19 12:26:17 [INFO] ---------------------------------------------- +2021-11-19 12:26:17 [INFO] ---------------------------------------------- +2021-11-19 12:26:17 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:26:17 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:26:17 [INFO] ---------------------------------------------- +2021-11-19 12:26:17 [INFO] ---------------------------------------------- +2021-11-19 12:26:17 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:26:17 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:17 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:26:17 [INFO] --------------------------- +2021-11-19 12:26:17 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:26:18 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 12:26:18 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 12:26:18 [ERROR] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:26:18 [DEBUG] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:26:18 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:26:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:26:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:18 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:26:18 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:26:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:26:18 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:26:18 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:26:18 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:26:18 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:26:18 [INFO]  +2021-11-19 12:26:18 [INFO] ---------------------------------------------- +2021-11-19 12:26:18 [INFO] ---------------------------------------------- +2021-11-19 12:26:18 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:26:18 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:26:18 [INFO] ---------------------------------------------- +2021-11-19 12:26:18 [INFO] ---------------------------------------------- +2021-11-19 12:26:18 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:26:18 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:18 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:26:18 [INFO] --------------------------- +2021-11-19 12:26:18 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:26:19 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:26:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:26:19 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PERL language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:26:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:26:19 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:26:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:26:19 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:26:19 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:26:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:26:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:19 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the R language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to shfmt... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to shfmt -d... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SHELL_SHFMT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_SHELL_SHFMT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking shfmt linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[SHELL_SHFMT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the STATES language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SQL language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:26:20 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:26:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:26:20 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:26:20 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:26:20 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:26:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:20 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:26:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TSX language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the XML language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:26:21 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:26:21 [DEBUG] Running linter for the YAML language... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:26:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:26:21 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:26:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:26:21 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:26:21 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:26:21 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:26:21 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:26:21 [INFO]  +2021-11-19 12:26:21 [INFO] ---------------------------------------------- +2021-11-19 12:26:21 [INFO] ---------------------------------------------- +2021-11-19 12:26:21 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:26:21 [INFO] Linting [YAML] files... +2021-11-19 12:26:21 [INFO] ---------------------------------------------- +2021-11-19 12:26:21 [INFO] ---------------------------------------------- +2021-11-19 12:26:21 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:26:21 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:21 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:26:21 [INFO] --------------------------- +2021-11-19 12:26:21 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:26:21 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:26:21 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:26:21 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:26:21 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:21 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:26:21 [INFO] --------------------------- +2021-11-19 12:26:21 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:26:22 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:26:22 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:26:22 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:26:22 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:22 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:26:22 [INFO] --------------------------- +2021-11-19 12:26:22 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:26:22 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:26:22 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:26:22 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:26:22 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:22 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:26:22 [INFO] --------------------------- +2021-11-19 12:26:22 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:26:22 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:26:22 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:26:22 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:26:22 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:26:22 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:26:22 [INFO] --------------------------- +2021-11-19 12:26:22 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:26:22 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:26:22 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:26:22 [INFO] ---------------------------------------------- +2021-11-19 12:26:22 [INFO] ---------------------------------------------- +2021-11-19 12:26:22 [INFO] The script has completed +2021-11-19 12:26:22 [INFO] ---------------------------------------------- +2021-11-19 12:26:22 [INFO] ---------------------------------------------- +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:26:22 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:26:22 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:26:22 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:26:22 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:30:39 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:30:40 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:30:40 [INFO] --------------------------------------------- +2021-11-19 12:30:40 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:30:40 [INFO] - Image Creation Date:[] +2021-11-19 12:30:40 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:30:40 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:30:40 [INFO] --------------------------------------------- +2021-11-19 12:30:40 [INFO] --------------------------------------------- +2021-11-19 12:30:40 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:30:40 [INFO] - https://github.com/github/super-linter +2021-11-19 12:30:40 [INFO] --------------------------------------------- +2021-11-19 12:30:40 [DEBUG] --------------------------------------------- +2021-11-19 12:30:40 [DEBUG] Linter Version Info: +2021-11-19 12:30:40 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:30:40 [DEBUG] --------------------------------------------- +2021-11-19 12:30:40 [INFO] -------------------------------------------- +2021-11-19 12:30:40 [INFO] Gathering GitHub information... +2021-11-19 12:30:40 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:30:40 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:30:40 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:30:40 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:30:40 [INFO] -------------------------------------------- +2021-11-19 12:30:40 [INFO] Gathering user validation information... +2021-11-19 12:30:40 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for BASH linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_BASH variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_BASH variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for DART linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:30:40 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:30:40 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:30:40 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for R linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for XML linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:30:41 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:30:41 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:30:41 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:30:41 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:30:41 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:30:41 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [BASH] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:30:41 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:30:41 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:30:41 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:30:41 [DEBUG] --------------------------------------------- +2021-11-19 12:30:41 [DEBUG] Runner:[root] +2021-11-19 12:30:41 [DEBUG] ENV: +2021-11-19 12:30:41 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=2ba04df506a7 +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.7kSkfBr0Zo +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:30:41 [DEBUG] --------------------------------------------- +2021-11-19 12:30:41 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:30:41 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:30:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:41 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:30:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:41 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:30:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:41 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:30:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:30:41 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:30:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:30:41 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:30:41 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:30:41 [DEBUG] Loading rules for ARM... +2021-11-19 12:30:41 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:30:41 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:41 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:30:41 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:41 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:30:41 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:41 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:30:41 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:30:42 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for BASH... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:30:42 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:30:42 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:30:42 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:30:42 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:30:42 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:30:42 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:30:42 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for CPP... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:30:42 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:30:42 [DEBUG] Loading rules for CSS... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:30:42 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for DART... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for DART... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:30:42 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:30:42 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:30:42 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:30:42 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:30:42 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:30:42 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for ENV... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:30:42 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:30:42 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:30:42 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:30:42 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:30:42 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:30:42 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:30:42 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:30:42 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:42 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:30:42 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:42 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:30:42 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:42 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:30:42 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:30:43 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for GO... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for GO... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:30:43 [INFO] ---------------------------------------------- +2021-11-19 12:30:43 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:30:43 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:30:43 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:30:43 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for HTML... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:30:43 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for JAVA... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:30:43 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:43 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:43 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:30:43 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for JSON... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:30:43 [DEBUG] Loading rules for JSONC... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:30:43 [DEBUG] Loading rules for JSX... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:43 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:43 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:30:43 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:30:43 [DEBUG] Loading rules for LATEX... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:30:43 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for LUA... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:30:43 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:30:43 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:30:43 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:30:43 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:43 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:30:43 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:43 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:30:43 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:43 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:30:43 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:30:43 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:30:43 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:30:43 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:30:44 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:30:44 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:30:44 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PERL... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:30:44 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:30:44 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:30:44 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:30:44 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:30:44 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:30:44 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:30:44 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:30:44 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:30:44 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:30:44 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:30:44 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:30:44 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:30:44 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for R... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for R... +2021-11-19 12:30:44 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:44 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:30:44 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:44 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:30:44 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:44 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:30:44 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:30:44 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:30:44 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:30:44 [DEBUG] Loading rules for RAKU... +2021-11-19 12:30:44 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:30:45 [DEBUG] Loading rules for RUBY... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:30:45 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:30:45 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:30:45 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:30:45 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:30:45 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:30:45 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:30:45 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:30:45 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:30:45 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for STATES... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:30:45 [DEBUG] Loading rules for SQL... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:30:45 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:30:45 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:30:45 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:30:45 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:30:45 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:30:45 [DEBUG] Loading rules for TSX... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:45 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:45 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:30:45 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:30:45 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:30:45 [DEBUG] Loading rules for XML... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for XML... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:30:45 [DEBUG] Loading rules for YAML... +2021-11-19 12:30:45 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:30:45 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:30:45 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:30:45 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:30:45 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:30:45 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:30:45 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:30:45 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:30:45 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:30:46 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:30:46 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:30:46 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:30:46 [DEBUG] ENV:[browser] +2021-11-19 12:30:46 [DEBUG] ENV:[es6] +2021-11-19 12:30:46 [DEBUG] ENV:[jest] +2021-11-19 12:30:46 [DEBUG] ENV:[browser] +2021-11-19 12:30:46 [DEBUG] ENV:[es6] +2021-11-19 12:30:46 [DEBUG] ENV:[jest] +2021-11-19 12:30:46 [DEBUG] --- Linter commands --- +2021-11-19 12:30:46 [DEBUG] ----------------------- +2021-11-19 12:30:46 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:30:46 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:30:46 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:30:46 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:30:46 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:30:46 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:30:46 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:30:46 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:30:46 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:30:46 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:30:46 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:30:46 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:30:46 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:30:46 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:30:46 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:30:46 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:30:46 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:30:46 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:30:46 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:30:46 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:30:46 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:30:46 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:30:46 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:30:46 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:30:46 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:30:46 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:30:46 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:30:46 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:30:46 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:30:46 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:30:46 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:30:46 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:30:46 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:30:46 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:30:46 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:30:46 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:30:46 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:30:46 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:30:46 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:30:46 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:30:46 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:30:46 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:30:46 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:30:46 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:30:46 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:30:46 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:30:46 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:30:46 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:30:46 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:30:46 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:30:46 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:30:46 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:30:46 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:30:46 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:30:46 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:30:46 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:30:46 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:30:46 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:30:46 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:30:46 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:30:46 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:30:46 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:30:46 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:30:46 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:30:46 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:30:46 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:30:46 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:30:46 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:30:46 [DEBUG] --------------------------------------------- +2021-11-19 12:30:46 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:30:46 [DEBUG] Building file list... +2021-11-19 12:30:46 [DEBUG] Validate all code base: true... +2021-11-19 12:30:46 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:30:46 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:30:46 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:30:46 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:30:46 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:30:46 [DEBUG] ---------------------------------------------- +2021-11-19 12:30:46 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:30:47 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:30:47 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:30:47 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:30:47 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:30:47 [DEBUG] ----------------------- +2021-11-19 12:30:47 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:30:47 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:30:47 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:30:47 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:30:47 [DEBUG] --------------------------------------------- +2021-11-19 12:30:47 [INFO] --------------------------------- +2021-11-19 12:30:47 [INFO] ------ File list to check: ------ +2021-11-19 12:30:47 [INFO] --------------------------------- +2021-11-19 12:30:47 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:30:47 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:30:48 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:30:48 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:30:48 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:30:48 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:30:48 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:30:48 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:30:48 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:30:48 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:30:48 [DEBUG]  +2021-11-19 12:30:48 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:30:48 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:30:48 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:30:49 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:49 [DEBUG]  +2021-11-19 12:30:49 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:49 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:50 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:30:50 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:30:50 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:30:50 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:30:50 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:30:51 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:30:51 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:30:51 [DEBUG]  +2021-11-19 12:30:51 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:30:52 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:30:52 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:30:52 [DEBUG]  +2021-11-19 12:30:52 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:53 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:30:53 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:30:53 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:30:53 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:30:54 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:30:54 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:30:54 [DEBUG]  +2021-11-19 12:30:54 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:30:55 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:30:55 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:30:55 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:30:55 [DEBUG]  +2021-11-19 12:30:55 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:30:56 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:30:56 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:30:56 [DEBUG]  +2021-11-19 12:30:56 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:30:56 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:30:56 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:30:56 [DEBUG]  +2021-11-19 12:30:56 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:30:56 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:30:56 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:30:56 [DEBUG]  +2021-11-19 12:30:56 [INFO] ---------------------------------------------- +2021-11-19 12:30:56 [INFO] Successfully gathered list of files... +2021-11-19 12:30:56 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:30:56 [DEBUG] ------------------------------------ +2021-11-19 12:30:56 [DEBUG] ENV: +2021-11-19 12:30:56 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=2ba04df506a7 +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.7kSkfBr0Zo +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=true +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:30:56 [DEBUG] ------------------------------------ +2021-11-19 12:30:56 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the ARM language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the BASH language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to shellcheck... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to shellcheck --color --external-sources... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_BASH file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking shellcheck linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[BASH] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CPP language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the CSS language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the DART language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:30:56 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:30:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:56 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:30:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:30:56 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:30:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:30:56 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:30:56 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:30:57 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:30:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:30:57 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:30:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:30:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:30:57 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:30:57 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:30:57 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:30:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:30:57 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:30:57 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:30:57 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:30:57 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:30:57 [INFO]  +2021-11-19 12:30:57 [INFO] ---------------------------------------------- +2021-11-19 12:30:57 [INFO] ---------------------------------------------- +2021-11-19 12:30:57 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:30:57 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:30:57 [INFO] ---------------------------------------------- +2021-11-19 12:30:57 [INFO] ---------------------------------------------- +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:30:57 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:30:57 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:30:57 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:30:57 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:30:57 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:30:57 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:30:57 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:30:57 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:30:57 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:30:57 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:30:57 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:57 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:30:57 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:57 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:57 [INFO] --------------------------- +2021-11-19 12:30:57 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:30:58 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:30:58 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:30:58 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:30:58 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:30:58 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:30:58 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:58 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:58 [INFO] --------------------------- +2021-11-19 12:30:58 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:30:58 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:58 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:30:59 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:30:59 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:30:59 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:30:59 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:30:59 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:30:59 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:30:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:30:59 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:30:59 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:30:59 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:30:59 [INFO] --------------------------- +2021-11-19 12:30:59 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:31:00 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:31:00 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:31:00 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:31:00 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:31:00 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:31:00 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:31:00 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:31:00 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:31:00 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:31:00 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:31:00 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:31:00 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:31:00 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:00 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:31:00 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:00 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:31:00 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:00 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:00 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:31:01 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:31:01 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:31:01 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:31:01 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:31:01 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:31:01 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:31:01 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:31:01 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:31:01 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:31:01 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:31:01 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:31:01 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:31:01 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:31:01 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:01 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:31:01 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:01 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:01 [INFO] --------------------------- +2021-11-19 12:31:01 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:31:02 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:31:02 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:31:02 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:31:02 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:31:02 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:31:02 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:31:02 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:31:02 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:31:02 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:31:02 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:31:02 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:31:02 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:31:02 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:02 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:31:02 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:02 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:02 [INFO] --------------------------- +2021-11-19 12:31:02 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:31:02 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:31:03 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:31:03 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:31:03 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:31:03 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:31:03 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:31:03 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:31:03 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:31:03 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:31:03 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:31:03 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:31:03 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:31:03 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:03 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:31:03 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:03 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:03 [INFO] --------------------------- +2021-11-19 12:31:03 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:31:04 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:31:04 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:31:04 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:31:04 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:31:04 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:31:04 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:31:04 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:31:04 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:31:04 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:31:04 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:31:04 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:31:04 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:31:04 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:31:04 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:04 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:31:04 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:04 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:04 [INFO] --------------------------- +2021-11-19 12:31:04 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:31:05 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:31:05 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:31:05 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:31:05 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:31:05 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:31:05 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:31:05 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:31:05 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:31:05 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:31:05 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:31:05 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:31:05 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:31:05 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:05 [INFO] --------------------------- +2021-11-19 12:31:05 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:31:05 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:05 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:31:05 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:05 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:31:06 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:31:06 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:31:06 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:31:06 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:31:06 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Running linter for the ENV language... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:31:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:31:06 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:31:06 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:31:06 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:31:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:06 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:31:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:31:06 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:06 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:31:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:31:06 [INFO]  +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:06 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:31:06 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:31:06 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:31:06 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:31:06 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:31:06 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:31:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:31:06 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:31:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:31:06 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:31:06 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:31:06 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:31:06 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:31:06 [INFO]  +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:31:06 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [INFO] ---------------------------------------------- +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:31:06 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:31:06 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:31:06 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:06 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:06 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:06 [INFO] --------------------------- +2021-11-19 12:31:06 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:31:06 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:31:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:06 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:31:07 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:31:07 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:31:07 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:31:07 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:31:07 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:31:07 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:31:07 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:31:07 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:31:07 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:31:07 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:31:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:31:07 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:07 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:07 [INFO] --------------------------- +2021-11-19 12:31:07 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:31:07 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:31:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:07 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:31:07 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:31:08 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:31:08 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:31:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:08 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:08 [INFO] --------------------------- +2021-11-19 12:31:08 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:31:09 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:31:09 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:31:09 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:31:09 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:31:09 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:31:09 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:31:09 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:31:09 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:31:09 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:31:09 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:31:09 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:31:09 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:31:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:09 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:09 [INFO] --------------------------- +2021-11-19 12:31:09 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:31:09 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:09 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:31:10 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:31:10 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:31:10 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:31:10 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:31:10 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:31:10 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:31:10 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:31:10 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:31:10 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:31:10 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:31:10 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:31:10 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:10 [INFO] --------------------------- +2021-11-19 12:31:10 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:31:10 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:31:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:10 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:31:10 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:10 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:31:11 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:31:11 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:31:11 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:31:11 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:31:11 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:31:11 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:31:11 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:31:11 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:31:11 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:31:11 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:31:11 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:31:11 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:31:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:11 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:31:11 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:11 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:11 [INFO] --------------------------- +2021-11-19 12:31:11 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:31:12 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:31:12 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:31:12 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:31:12 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:31:12 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:31:12 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:31:12 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:31:12 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:31:12 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:31:12 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:31:12 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:31:12 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:12 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:12 [INFO] --------------------------- +2021-11-19 12:31:12 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:31:12 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:31:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:31:13 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:31:13 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:31:13 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:31:13 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:31:13 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:31:13 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:31:13 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:31:13 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:31:13 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:31:13 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:31:13 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:31:13 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:13 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:13 [INFO] --------------------------- +2021-11-19 12:31:13 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:31:13 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:31:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:31:14 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:31:14 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:31:14 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:31:14 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:31:14 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:31:14 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:31:14 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:31:14 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:31:14 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:31:14 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:31:14 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:31:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:14 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:31:14 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:14 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:14 [INFO] --------------------------- +2021-11-19 12:31:14 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:31:15 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:31:15 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:31:15 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:31:15 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:31:15 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:31:15 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:31:15 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:31:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:15 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:31:15 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:15 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:15 [INFO] --------------------------- +2021-11-19 12:31:15 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:31:20 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:31:20 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:31:20 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:31:20 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:31:20 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:31:20 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:31:20 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:31:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:20 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:31:20 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:20 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:20 [INFO] --------------------------- +2021-11-19 12:31:20 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:31:20 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:31:21 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:31:21 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:31:21 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:31:21 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:31:21 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:31:21 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:21 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:31:21 [INFO] --------------------------- +2021-11-19 12:31:21 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:31:21 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:31:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:21 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:31:21 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:31:21 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:31:21 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:31:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:21 [DEBUG] Running linter for the GO language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:31:21 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:31:21 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:31:21 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:31:21 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:31:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:21 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:31:21 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:31:21 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:31:21 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:31:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:21 [DEBUG] Running linter for the HTML language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:31:21 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:31:21 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:31:21 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:31:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:21 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:31:21 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:31:21 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:31:21 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:31:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:21 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:31:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:21 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:31:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:31:22 [DEBUG] Running linter for the JSON language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the JSX language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the LUA language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:31:22 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:22 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:31:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:31:22 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:31:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:31:22 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:31:22 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:31:22 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:31:22 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:31:22 [INFO]  +2021-11-19 12:31:22 [INFO] ---------------------------------------------- +2021-11-19 12:31:22 [INFO] ---------------------------------------------- +2021-11-19 12:31:22 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:31:22 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:31:22 [INFO] ---------------------------------------------- +2021-11-19 12:31:22 [INFO] ---------------------------------------------- +2021-11-19 12:31:22 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:31:22 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:22 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:31:22 [INFO] --------------------------- +2021-11-19 12:31:22 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:31:23 [DEBUG] Found errors. Error code: 1, File type: MARKDOWN, Error on missing exec bit: false +2021-11-19 12:31:23 [ERROR] Found errors in [markdownlint] linter! +2021-11-19 12:31:23 [ERROR] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:31:23 [DEBUG] Error code: 1. Command output: +------ +/tmp/lint/README.md:25:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:27:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:31:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:32:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:33:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:34:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:35:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:37:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:39:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:41:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:42:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:43:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:45:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:49:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:50:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:51:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:52:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:53:1 MD010/no-hard-tabs Hard tabs [Column: 1] +/tmp/lint/README.md:54:1 MD010/no-hard-tabs Hard tabs [Column: 1] +------ +2021-11-19 12:31:23 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:31:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:31:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:23 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:31:23 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:31:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:31:23 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:31:23 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:31:23 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:31:23 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:31:23 [INFO]  +2021-11-19 12:31:23 [INFO] ---------------------------------------------- +2021-11-19 12:31:23 [INFO] ---------------------------------------------- +2021-11-19 12:31:23 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:31:23 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:31:23 [INFO] ---------------------------------------------- +2021-11-19 12:31:23 [INFO] ---------------------------------------------- +2021-11-19 12:31:23 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:31:23 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:23 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:31:23 [INFO] --------------------------- +2021-11-19 12:31:23 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:31:24 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:31:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:31:24 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:31:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:31:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:24 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:31:24 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:31:24 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:31:24 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:31:24 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:31:24 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:31:24 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:24 [DEBUG] Running linter for the PERL language... +2021-11-19 12:31:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:31:24 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:24 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:31:24 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:31:24 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:31:24 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:31:24 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:31:24 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:31:24 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:24 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the R language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:31:25 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:31:25 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:31:25 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:31:25 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:31:25 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:31:25 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:25 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:31:25 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:31:26 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the STATES language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the SQL language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TSX language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the XML language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:31:26 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:31:26 [DEBUG] Running linter for the YAML language... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:31:26 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:31:26 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:31:26 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:31:26 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:31:26 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:31:26 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:31:27 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:31:27 [INFO]  +2021-11-19 12:31:27 [INFO] ---------------------------------------------- +2021-11-19 12:31:27 [INFO] ---------------------------------------------- +2021-11-19 12:31:27 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:31:27 [INFO] Linting [YAML] files... +2021-11-19 12:31:27 [INFO] ---------------------------------------------- +2021-11-19 12:31:27 [INFO] ---------------------------------------------- +2021-11-19 12:31:27 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:31:27 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:27 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:31:27 [INFO] --------------------------- +2021-11-19 12:31:27 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:31:27 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:31:27 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:31:27 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:31:27 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:27 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:31:27 [INFO] --------------------------- +2021-11-19 12:31:27 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:31:27 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:31:27 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:31:27 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:31:27 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:27 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:31:27 [INFO] --------------------------- +2021-11-19 12:31:27 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:31:27 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:31:27 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:31:27 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:31:27 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:27 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:31:27 [INFO] --------------------------- +2021-11-19 12:31:27 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:31:28 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:31:28 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:31:28 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:31:28 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:31:28 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:31:28 [INFO] --------------------------- +2021-11-19 12:31:28 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:31:28 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:31:28 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:31:28 [INFO] ---------------------------------------------- +2021-11-19 12:31:28 [INFO] ---------------------------------------------- +2021-11-19 12:31:28 [INFO] The script has completed +2021-11-19 12:31:28 [INFO] ---------------------------------------------- +2021-11-19 12:31:28 [INFO] ---------------------------------------------- +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:31:28 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:31:28 [ERROR] ERRORS FOUND in MARKDOWN:[1] +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for MARKDOWN with status error +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:31:28 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:31:28 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:34:13 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:34:14 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:34:14 [INFO] --------------------------------------------- +2021-11-19 12:34:14 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:34:14 [INFO] - Image Creation Date:[] +2021-11-19 12:34:14 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:34:14 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:34:14 [INFO] --------------------------------------------- +2021-11-19 12:34:14 [INFO] --------------------------------------------- +2021-11-19 12:34:14 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:34:14 [INFO] - https://github.com/github/super-linter +2021-11-19 12:34:14 [INFO] --------------------------------------------- +2021-11-19 12:34:14 [DEBUG] --------------------------------------------- +2021-11-19 12:34:14 [DEBUG] Linter Version Info: +2021-11-19 12:34:14 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:34:14 [DEBUG] --------------------------------------------- +2021-11-19 12:34:14 [INFO] -------------------------------------------- +2021-11-19 12:34:14 [INFO] Gathering GitHub information... +2021-11-19 12:34:14 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:34:14 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:34:14 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:34:14 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:34:14 [INFO] -------------------------------------------- +2021-11-19 12:34:14 [INFO] Gathering user validation information... +2021-11-19 12:34:14 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for DART linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:34:14 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:34:14 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:34:14 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for R linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for XML linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:34:15 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:34:15 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:34:15 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:34:15 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:34:15 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:34:15 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:34:15 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:34:15 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:34:15 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:34:15 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:34:15 [DEBUG] --------------------------------------------- +2021-11-19 12:34:15 [DEBUG] Runner:[root] +2021-11-19 12:34:15 [DEBUG] ENV: +2021-11-19 12:34:15 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=4a3a79ad6a73 +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.0vV1n5cSrx +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:34:15 [DEBUG] --------------------------------------------- +2021-11-19 12:34:15 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:34:15 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:34:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:15 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:34:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:15 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:34:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:15 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:34:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:34:15 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:34:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:34:15 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:34:15 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:34:15 [DEBUG] Loading rules for ARM... +2021-11-19 12:34:15 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:34:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:15 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:34:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:15 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:34:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:15 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:34:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:34:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:34:15 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:34:15 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:34:15 [DEBUG] Loading rules for BASH... +2021-11-19 12:34:15 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:34:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:15 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:34:15 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:34:15 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:34:16 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:34:16 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:34:16 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:34:16 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:34:16 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:34:16 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for CPP... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:34:16 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:34:16 [DEBUG] Loading rules for CSS... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:34:16 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for DART... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for DART... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:34:16 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:34:16 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:34:16 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:34:16 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:34:16 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:34:16 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for ENV... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:34:16 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:34:16 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:34:16 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:34:16 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:16 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:34:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:16 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:34:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:34:16 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:34:16 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:34:16 [DEBUG] Loading rules for GO... +2021-11-19 12:34:16 [DEBUG] Getting linter rules for GO... +2021-11-19 12:34:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:16 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:34:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:34:17 [INFO] ---------------------------------------------- +2021-11-19 12:34:17 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:34:17 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:34:17 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:34:17 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for HTML... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:34:17 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for JAVA... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:34:17 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:17 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:17 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:34:17 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for JSON... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:34:17 [DEBUG] Loading rules for JSONC... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:34:17 [DEBUG] Loading rules for JSX... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:17 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:17 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:34:17 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:34:17 [DEBUG] Loading rules for LATEX... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:34:17 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for LUA... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:34:17 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:34:17 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:34:17 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:34:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:17 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:34:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:17 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:34:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:17 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:34:17 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:34:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:34:17 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:34:17 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:34:18 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:34:18 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:34:18 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PERL... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:34:18 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:34:18 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:34:18 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:34:18 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:34:18 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:34:18 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:34:18 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:34:18 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:34:18 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:34:18 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:34:18 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:34:18 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:34:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:34:18 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:34:18 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:34:18 [DEBUG] Loading rules for R... +2021-11-19 12:34:18 [DEBUG] Getting linter rules for R... +2021-11-19 12:34:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:18 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:34:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:18 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:34:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:18 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:34:19 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for RAKU... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:34:19 [DEBUG] Loading rules for RUBY... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:34:19 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:34:19 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:34:19 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:34:19 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:34:19 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:34:19 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:34:19 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:34:19 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:34:19 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for STATES... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:34:19 [DEBUG] Loading rules for SQL... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:34:19 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:34:19 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:34:19 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:34:19 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:34:19 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:34:19 [DEBUG] Loading rules for TSX... +2021-11-19 12:34:19 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:34:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:19 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:34:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:19 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:19 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:19 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:19 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:19 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:19 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:34:20 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:34:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:20 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:34:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:20 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:20 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:20 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:20 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:34:20 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:34:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:20 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:34:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:20 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:34:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:20 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:34:20 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:34:20 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:34:20 [DEBUG] Loading rules for XML... +2021-11-19 12:34:20 [DEBUG] Getting linter rules for XML... +2021-11-19 12:34:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:20 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:34:20 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:34:20 [DEBUG] Loading rules for YAML... +2021-11-19 12:34:20 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:34:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:34:20 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:34:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:34:20 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:34:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:34:20 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:34:20 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:34:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:34:20 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:34:20 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:34:20 [DEBUG] ENV:[browser] +2021-11-19 12:34:20 [DEBUG] ENV:[es6] +2021-11-19 12:34:20 [DEBUG] ENV:[jest] +2021-11-19 12:34:20 [DEBUG] ENV:[browser] +2021-11-19 12:34:20 [DEBUG] ENV:[es6] +2021-11-19 12:34:20 [DEBUG] ENV:[jest] +2021-11-19 12:34:20 [DEBUG] --- Linter commands --- +2021-11-19 12:34:20 [DEBUG] ----------------------- +2021-11-19 12:34:20 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:34:20 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:34:20 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:34:20 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:34:20 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:34:20 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:34:20 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:34:20 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:34:20 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:34:20 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:34:20 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:34:20 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:34:20 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:34:20 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:34:20 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:34:20 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:34:20 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:34:20 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:34:20 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:34:20 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:34:20 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:34:20 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:34:20 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:34:20 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:34:20 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:34:20 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:34:20 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:34:20 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:34:20 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:34:20 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:34:20 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:34:20 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:34:20 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:34:20 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:34:20 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:34:20 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:34:20 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:34:20 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:34:20 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:34:20 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:34:20 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:34:20 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:34:20 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:34:20 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:34:20 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:34:20 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:34:20 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:34:20 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:34:20 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:34:20 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:34:20 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:34:20 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:34:20 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:34:20 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:34:20 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:34:20 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:34:20 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:34:20 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:34:20 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:34:20 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:34:20 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:34:20 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:34:20 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:34:20 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:34:20 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:34:21 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:34:21 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:34:21 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:34:21 [DEBUG] --------------------------------------------- +2021-11-19 12:34:21 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:34:21 [DEBUG] Building file list... +2021-11-19 12:34:21 [DEBUG] Validate all code base: true... +2021-11-19 12:34:21 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:34:21 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:34:21 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:34:21 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:34:21 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:34:21 [DEBUG] ---------------------------------------------- +2021-11-19 12:34:21 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:34:21 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:21 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:34:22 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:34:22 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:34:22 [DEBUG] ----------------------- +2021-11-19 12:34:22 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:34:22 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:34:22 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:34:22 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:34:22 [DEBUG] --------------------------------------------- +2021-11-19 12:34:22 [INFO] --------------------------------- +2021-11-19 12:34:22 [INFO] ------ File list to check: ------ +2021-11-19 12:34:22 [INFO] --------------------------------- +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:34:22 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:34:22 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:34:22 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:34:22 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:22 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:34:22 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:34:22 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:34:22 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:34:22 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:34:22 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:34:22 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:34:23 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:23 [DEBUG]  +2021-11-19 12:34:23 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:23 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:34:24 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:34:24 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:34:24 [DEBUG]  +2021-11-19 12:34:24 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:34:25 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:34:25 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:34:25 [DEBUG]  +2021-11-19 12:34:25 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:34:26 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:34:26 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:34:26 [DEBUG]  +2021-11-19 12:34:26 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:34:27 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:34:27 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:34:27 [DEBUG]  +2021-11-19 12:34:27 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:34:28 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:34:28 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:34:28 [DEBUG]  +2021-11-19 12:34:28 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:34:29 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:34:29 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:34:29 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:34:29 [DEBUG]  +2021-11-19 12:34:29 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:34:30 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:34:30 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:34:30 [DEBUG]  +2021-11-19 12:34:30 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:34:30 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:34:30 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:34:30 [DEBUG]  +2021-11-19 12:34:30 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:34:30 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:34:30 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:34:30 [DEBUG]  +2021-11-19 12:34:30 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:34:30 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:34:30 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:34:30 [DEBUG]  +2021-11-19 12:34:30 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:34:30 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:34:30 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:34:30 [DEBUG]  +2021-11-19 12:34:30 [INFO] ---------------------------------------------- +2021-11-19 12:34:30 [INFO] Successfully gathered list of files... +2021-11-19 12:34:30 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:34:30 [DEBUG] ------------------------------------ +2021-11-19 12:34:30 [DEBUG] ENV: +2021-11-19 12:34:30 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=4a3a79ad6a73 +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.0vV1n5cSrx +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:34:30 [DEBUG] ------------------------------------ +2021-11-19 12:34:30 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the ARM language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the BASH language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:34:30 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CPP language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the CSS language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the DART language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:34:30 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:34:30 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:34:30 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:34:30 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:34:30 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:30 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:34:30 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:30 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:34:31 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:34:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:34:31 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:34:31 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:34:31 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:34:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:31 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:34:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:34:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:31 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:34:31 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:34:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:34:31 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:34:31 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:34:31 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:34:31 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:31 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:34:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:34:31 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:31 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:34:31 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:34:31 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:34:31 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:34:31 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:31 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:34:31 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:31 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:34:31 [INFO]  +2021-11-19 12:34:31 [INFO] ---------------------------------------------- +2021-11-19 12:34:31 [INFO] ---------------------------------------------- +2021-11-19 12:34:31 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:31 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:34:31 [INFO] ---------------------------------------------- +2021-11-19 12:34:31 [INFO] ---------------------------------------------- +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:34:31 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:34:31 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:34:31 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:34:31 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:34:31 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:34:31 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:34:31 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:34:31 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:34:31 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:34:31 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:31 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:34:31 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:31 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:31 [INFO] --------------------------- +2021-11-19 12:34:31 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:34:31 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:34:32 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:34:32 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:34:32 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:34:32 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:34:32 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:32 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:34:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:32 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:34:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:32 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:32 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:34:33 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:34:33 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:34:33 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:34:33 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:34:33 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:33 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:33 [INFO] --------------------------- +2021-11-19 12:34:33 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:34:33 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:33 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:34:34 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:34:34 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:34:34 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:34:34 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:34:34 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:34:34 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:34:34 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:34:34 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:34:34 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:34:34 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:34:34 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:34:34 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:34:34 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:34 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:34:34 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:34 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:34 [INFO] --------------------------- +2021-11-19 12:34:34 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:34:35 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:34:35 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:34:35 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:34:35 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:34:35 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:34:35 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:34:35 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:34:35 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:34:35 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:34:35 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:34:35 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:34:35 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:34:35 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:34:35 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:35 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:34:35 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:35 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:35 [INFO] --------------------------- +2021-11-19 12:34:35 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:34:36 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:34:36 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:34:36 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:34:36 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:34:36 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:34:36 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:34:36 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:34:36 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:34:36 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:34:36 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:34:36 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:34:36 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:34:36 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:34:36 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:36 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:36 [INFO] --------------------------- +2021-11-19 12:34:36 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:34:36 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:34:37 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:34:37 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:34:37 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:34:37 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:34:37 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:34:37 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:34:37 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:34:37 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:34:37 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:34:37 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:34:37 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:34:37 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:37 [INFO] --------------------------- +2021-11-19 12:34:37 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:34:37 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:37 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:34:37 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:37 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:34:38 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:34:38 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:34:38 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:34:38 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:34:38 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:34:38 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:34:38 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:34:38 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:34:38 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:34:38 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:34:38 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:34:38 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:34:38 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:38 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:34:38 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:38 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:38 [INFO] --------------------------- +2021-11-19 12:34:38 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:34:39 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:34:39 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:34:39 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:34:39 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:34:39 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:34:39 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:34:39 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:34:39 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:34:39 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:34:39 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:34:39 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:34:39 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:34:39 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:39 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:34:39 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:39 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:39 [INFO] --------------------------- +2021-11-19 12:34:39 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:34:40 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:34:40 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:34:40 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:34:40 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:34:40 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:34:40 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:34:40 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:34:40 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:34:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:40 [DEBUG] Running linter for the ENV language... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:34:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:34:40 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:34:40 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:34:40 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:34:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:40 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:34:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:34:40 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:40 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:34:40 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:40 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:34:40 [INFO]  +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:40 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:34:40 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:34:40 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:34:40 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:34:40 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:34:40 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:34:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:34:40 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:34:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:34:40 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:40 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:34:40 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:40 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:34:40 [INFO]  +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:40 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [INFO] ---------------------------------------------- +2021-11-19 12:34:40 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:34:40 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:40 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:40 [INFO] --------------------------- +2021-11-19 12:34:40 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:34:41 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:34:41 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:34:41 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:34:41 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:34:41 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:34:41 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:34:41 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:34:41 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:34:41 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:34:41 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:34:41 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:34:41 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:34:41 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:34:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:41 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:34:41 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:41 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:41 [INFO] --------------------------- +2021-11-19 12:34:41 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:34:42 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:34:42 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:34:42 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:42 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:34:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:42 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:34:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:42 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:42 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:34:43 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:34:43 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:34:43 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:34:43 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:34:43 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:34:43 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:43 [INFO] --------------------------- +2021-11-19 12:34:43 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:34:43 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:34:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:43 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:34:43 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:43 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:34:44 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:34:44 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:34:44 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:34:44 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:34:44 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:34:44 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:34:44 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:34:44 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:34:44 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:34:44 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:34:44 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:34:44 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:34:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:44 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:34:44 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:44 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:44 [INFO] --------------------------- +2021-11-19 12:34:44 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:34:45 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:34:45 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:34:45 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:34:45 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:34:45 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:34:45 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:34:45 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:34:45 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:34:45 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:34:45 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:34:45 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:34:45 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:34:45 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:34:45 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:45 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:45 [INFO] --------------------------- +2021-11-19 12:34:45 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:34:45 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:34:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:45 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:34:46 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:34:46 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:34:46 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:34:46 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:34:46 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:34:46 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:34:46 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:34:46 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:34:46 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:34:46 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:34:46 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:46 [INFO] --------------------------- +2021-11-19 12:34:46 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:34:46 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:34:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:34:46 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:46 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:34:47 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:34:47 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:34:47 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:34:47 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:34:47 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:34:47 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:34:47 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:34:47 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:34:47 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:34:47 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:34:47 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:34:47 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:34:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:47 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:34:47 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:47 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:47 [INFO] --------------------------- +2021-11-19 12:34:47 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:34:48 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:34:48 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:34:48 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:34:48 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:34:48 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:34:48 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:34:48 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:34:48 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:34:48 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:34:48 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:48 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:34:48 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:34:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:48 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:34:48 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:48 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:48 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:34:49 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:34:49 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:34:49 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:34:49 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:34:49 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:34:49 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:34:49 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:34:49 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:34:49 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:34:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:49 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:34:49 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:49 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:49 [INFO] --------------------------- +2021-11-19 12:34:49 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:34:50 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:34:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:50 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:34:50 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:50 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:50 [INFO] --------------------------- +2021-11-19 12:34:50 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:34:50 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:34:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:50 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:34:50 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:50 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:50 [INFO] --------------------------- +2021-11-19 12:34:50 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:34:54 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:34:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:54 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:34:54 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:54 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:54 [INFO] --------------------------- +2021-11-19 12:34:54 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:34:54 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:34:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:54 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:34:54 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:34:55 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:34:55 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:34:55 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:34:55 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:34:55 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:34:55 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:34:55 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:34:55 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:34:55 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:34:55 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:34:55 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:34:55 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:55 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:34:55 [INFO] --------------------------- +2021-11-19 12:34:55 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:34:55 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:34:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:55 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:34:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:34:55 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:34:55 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:34:55 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:34:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:55 [DEBUG] Running linter for the GO language... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:34:55 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:34:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:34:55 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:34:55 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:34:55 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:34:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:55 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:34:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:34:55 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the HTML language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:34:56 [DEBUG] Running linter for the JSON language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the JSX language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the LUA language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:34:56 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:56 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:34:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:34:56 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:34:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:34:56 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:34:56 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:34:56 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:34:56 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:34:56 [INFO]  +2021-11-19 12:34:56 [INFO] ---------------------------------------------- +2021-11-19 12:34:56 [INFO] ---------------------------------------------- +2021-11-19 12:34:56 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:34:56 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:34:56 [INFO] ---------------------------------------------- +2021-11-19 12:34:56 [INFO] ---------------------------------------------- +2021-11-19 12:34:56 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:34:56 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:56 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:34:56 [INFO] --------------------------- +2021-11-19 12:34:56 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:34:57 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 12:34:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:57 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:34:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:34:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:57 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:34:57 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:34:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:34:57 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:34:57 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:34:57 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:34:57 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:34:57 [INFO]  +2021-11-19 12:34:57 [INFO] ---------------------------------------------- +2021-11-19 12:34:57 [INFO] ---------------------------------------------- +2021-11-19 12:34:57 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:34:57 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:34:57 [INFO] ---------------------------------------------- +2021-11-19 12:34:57 [INFO] ---------------------------------------------- +2021-11-19 12:34:57 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:34:57 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:34:57 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:34:57 [INFO] --------------------------- +2021-11-19 12:34:57 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:34:58 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:34:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:34:58 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the PERL language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:34:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:58 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:34:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:34:58 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:34:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:34:58 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:34:58 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:34:58 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the R language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:34:59 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:34:59 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:34:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:34:59 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:34:59 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:34:59 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:34:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:34:59 [DEBUG] Running linter for the STATES language... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:34:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the SQL language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TSX language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the XML language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:35:00 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:35:00 [DEBUG] Running linter for the YAML language... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:35:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:35:00 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:35:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:35:00 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:35:00 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:35:00 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:35:00 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:35:00 [INFO]  +2021-11-19 12:35:00 [INFO] ---------------------------------------------- +2021-11-19 12:35:00 [INFO] ---------------------------------------------- +2021-11-19 12:35:00 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:35:00 [INFO] Linting [YAML] files... +2021-11-19 12:35:00 [INFO] ---------------------------------------------- +2021-11-19 12:35:00 [INFO] ---------------------------------------------- +2021-11-19 12:35:00 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:35:00 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:35:00 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:35:00 [INFO] --------------------------- +2021-11-19 12:35:00 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:35:00 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:35:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:35:00 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:35:00 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:35:00 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:35:00 [INFO] --------------------------- +2021-11-19 12:35:00 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:35:01 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:35:01 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:35:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:35:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:35:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:35:01 [INFO] --------------------------- +2021-11-19 12:35:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:35:01 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:35:01 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:35:01 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:35:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:35:01 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:35:01 [INFO] --------------------------- +2021-11-19 12:35:01 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:35:01 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:35:01 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:35:01 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:35:01 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:35:01 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:35:01 [INFO] --------------------------- +2021-11-19 12:35:01 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:35:01 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:35:01 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:35:01 [INFO] ---------------------------------------------- +2021-11-19 12:35:01 [INFO] ---------------------------------------------- +2021-11-19 12:35:01 [INFO] The script has completed +2021-11-19 12:35:01 [INFO] ---------------------------------------------- +2021-11-19 12:35:01 [INFO] ---------------------------------------------- +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:35:01 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:35:01 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:35:01 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:41:15 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:41:15 [INFO] --------------------------------------------- +2021-11-19 12:41:15 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:41:15 [INFO] - Image Creation Date:[] +2021-11-19 12:41:15 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:41:15 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:41:15 [INFO] --------------------------------------------- +2021-11-19 12:41:15 [INFO] --------------------------------------------- +2021-11-19 12:41:15 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:41:15 [INFO] - https://github.com/github/super-linter +2021-11-19 12:41:15 [INFO] --------------------------------------------- +2021-11-19 12:41:15 [DEBUG] --------------------------------------------- +2021-11-19 12:41:15 [DEBUG] Linter Version Info: +2021-11-19 12:41:15 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:41:15 [DEBUG] --------------------------------------------- +2021-11-19 12:41:15 [INFO] -------------------------------------------- +2021-11-19 12:41:15 [INFO] Gathering GitHub information... +2021-11-19 12:41:15 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:41:15 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:41:15 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:41:15 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:41:15 [INFO] -------------------------------------------- +2021-11-19 12:41:15 [INFO] Gathering user validation information... +2021-11-19 12:41:15 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:41:15 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:41:15 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:41:15 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:41:15 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:41:15 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:41:15 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:41:15 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:41:15 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:41:15 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:41:15 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:41:15 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:41:15 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for DART linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for R linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:41:16 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:41:16 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:41:16 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for XML linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:41:17 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:41:17 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:41:17 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:41:17 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:41:17 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:41:17 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:41:17 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:41:17 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:41:17 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:41:17 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:41:17 [DEBUG] --------------------------------------------- +2021-11-19 12:41:17 [DEBUG] Runner:[root] +2021-11-19 12:41:17 [DEBUG] ENV: +2021-11-19 12:41:17 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=855851d27aaf +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.14psaiaxPl +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:41:17 [DEBUG] --------------------------------------------- +2021-11-19 12:41:17 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:17 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:41:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:17 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:41:17 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:41:17 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:41:17 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:41:17 [DEBUG] Loading rules for ARM... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:17 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:41:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:17 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:41:17 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:41:17 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:41:17 [DEBUG] Loading rules for BASH... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:41:17 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:41:17 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:41:17 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:17 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:41:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:17 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:41:17 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:41:17 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:41:17 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:41:17 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:41:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:17 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:41:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:17 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:41:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:17 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:41:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:41:17 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:41:17 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:41:17 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:41:17 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:41:18 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for CPP... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:41:18 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:41:18 [DEBUG] Loading rules for CSS... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:41:18 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for DART... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for DART... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:41:18 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:41:18 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:41:18 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:41:18 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:41:18 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:41:18 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for ENV... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:41:18 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:41:18 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:41:18 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:41:18 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:41:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:41:18 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for GO... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GO... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:18 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:41:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:18 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:41:18 [INFO] ---------------------------------------------- +2021-11-19 12:41:18 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:41:18 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:41:18 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:41:18 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:41:18 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:41:18 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:41:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:18 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:41:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:41:19 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for HTML... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:41:19 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for JAVA... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:41:19 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:19 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:19 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:41:19 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for JSON... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:41:19 [DEBUG] Loading rules for JSONC... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:41:19 [DEBUG] Loading rules for JSX... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:19 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:19 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:41:19 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:41:19 [DEBUG] Loading rules for LATEX... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:41:19 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for LUA... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:41:19 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:41:19 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:41:19 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:41:19 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:19 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:41:19 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:19 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:41:19 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:19 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:41:19 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:41:19 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:41:19 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:41:20 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:41:20 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:41:20 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:41:20 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PERL... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:41:20 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:41:20 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:41:20 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:41:20 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:41:20 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:41:20 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:41:20 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:41:20 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:41:20 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:41:20 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:20 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:41:20 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:20 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:41:20 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:41:20 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:41:20 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:41:20 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:41:20 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:41:20 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:20 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:41:20 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:41:21 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:41:21 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for R... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for R... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:41:21 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for RAKU... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:41:21 [DEBUG] Loading rules for RUBY... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:41:21 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:41:21 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:41:21 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:41:21 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:41:21 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:41:21 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:41:21 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:41:21 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:41:21 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for STATES... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:41:21 [DEBUG] Loading rules for SQL... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:41:21 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:41:21 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:41:21 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:41:21 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:41:21 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:41:21 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:41:21 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:21 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:41:21 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:21 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:41:21 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:21 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:41:21 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:41:22 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:41:22 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:22 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:41:22 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:22 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:41:22 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:41:22 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:41:22 [DEBUG] Loading rules for TSX... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:22 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:22 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:22 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:22 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:22 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:22 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:22 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:22 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:22 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:22 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:22 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:41:22 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:22 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:41:22 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:41:22 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:41:22 [DEBUG] Loading rules for XML... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for XML... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:41:22 [DEBUG] Loading rules for YAML... +2021-11-19 12:41:22 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:41:22 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:41:22 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:41:22 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:41:22 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:41:22 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:41:22 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:41:22 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:41:22 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:41:22 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:41:22 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:41:22 [DEBUG] ENV:[browser] +2021-11-19 12:41:22 [DEBUG] ENV:[es6] +2021-11-19 12:41:22 [DEBUG] ENV:[jest] +2021-11-19 12:41:22 [DEBUG] ENV:[browser] +2021-11-19 12:41:22 [DEBUG] ENV:[es6] +2021-11-19 12:41:22 [DEBUG] ENV:[jest] +2021-11-19 12:41:22 [DEBUG] --- Linter commands --- +2021-11-19 12:41:22 [DEBUG] ----------------------- +2021-11-19 12:41:22 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:41:22 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:41:23 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:41:23 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:41:23 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:41:23 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:41:23 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:41:23 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:41:23 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:41:23 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:41:23 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:41:23 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:41:23 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:41:23 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:41:23 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:41:23 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:41:23 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:41:23 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:41:23 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:41:23 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:41:23 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:41:23 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:41:23 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:41:23 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:41:23 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:41:23 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:41:23 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:41:23 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:41:23 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:41:23 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:41:23 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:41:23 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:41:23 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:41:23 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:41:23 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:41:23 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:41:23 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:41:23 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:41:23 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:41:23 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:41:23 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:41:23 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:41:23 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:41:23 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:41:23 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:41:23 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:41:23 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:41:23 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:41:23 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:41:23 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:41:23 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:41:23 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:41:23 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:41:23 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:41:23 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:41:23 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:41:23 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:41:23 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:41:23 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:41:23 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:41:23 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:41:23 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:41:23 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:41:23 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:41:23 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:41:23 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:41:23 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:41:23 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:41:23 [DEBUG] --------------------------------------------- +2021-11-19 12:41:23 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:41:23 [DEBUG] Building file list... +2021-11-19 12:41:23 [DEBUG] Validate all code base: true... +2021-11-19 12:41:23 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:41:23 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:41:23 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:41:23 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:41:23 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:41:23 [DEBUG] ---------------------------------------------- +2021-11-19 12:41:23 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:41:23 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:23 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:41:24 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:41:24 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:41:24 [DEBUG] ----------------------- +2021-11-19 12:41:24 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:41:24 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:41:24 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:41:24 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:41:24 [DEBUG] --------------------------------------------- +2021-11-19 12:41:24 [INFO] --------------------------------- +2021-11-19 12:41:24 [INFO] ------ File list to check: ------ +2021-11-19 12:41:24 [INFO] --------------------------------- +2021-11-19 12:41:24 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:41:24 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:41:24 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:41:24 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:41:24 [DEBUG]  +2021-11-19 12:41:24 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:41:24 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:41:24 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:41:24 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:41:24 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:41:24 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:41:24 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:41:24 [DEBUG]  +2021-11-19 12:41:24 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:41:24 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:41:24 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:41:24 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:41:24 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:41:24 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:41:24 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:41:25 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:41:25 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:41:25 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:41:25 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:41:25 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:41:25 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:41:25 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:41:25 [DEBUG]  +2021-11-19 12:41:25 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:41:26 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:41:26 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:41:26 [DEBUG]  +2021-11-19 12:41:26 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:41:27 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:41:27 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:41:27 [DEBUG]  +2021-11-19 12:41:27 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:41:28 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:41:28 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:41:28 [DEBUG]  +2021-11-19 12:41:28 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:41:29 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:41:29 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:41:29 [DEBUG]  +2021-11-19 12:41:29 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:41:30 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:41:30 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:41:30 [DEBUG]  +2021-11-19 12:41:30 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:41:31 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:41:31 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:41:31 [DEBUG]  +2021-11-19 12:41:31 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:41:32 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:41:32 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:41:32 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:41:32 [DEBUG]  +2021-11-19 12:41:32 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:41:33 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:41:33 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:41:33 [DEBUG]  +2021-11-19 12:41:33 [INFO] ---------------------------------------------- +2021-11-19 12:41:33 [INFO] Successfully gathered list of files... +2021-11-19 12:41:33 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:41:33 [DEBUG] ------------------------------------ +2021-11-19 12:41:33 [DEBUG] ENV: +2021-11-19 12:41:33 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=855851d27aaf +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.14psaiaxPl +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:41:33 [DEBUG] ------------------------------------ +2021-11-19 12:41:33 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the ARM language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the BASH language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:41:33 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CPP language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the CSS language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the DART language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:41:33 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:41:33 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:41:33 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:41:33 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:33 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:41:33 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:41:33 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:41:33 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:41:34 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:41:34 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:41:34 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:41:34 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:34 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:41:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:41:34 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:34 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:41:34 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:41:34 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:41:34 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:41:34 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:34 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:41:34 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:34 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:41:34 [INFO]  +2021-11-19 12:41:34 [INFO] ---------------------------------------------- +2021-11-19 12:41:34 [INFO] ---------------------------------------------- +2021-11-19 12:41:34 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:34 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:41:34 [INFO] ---------------------------------------------- +2021-11-19 12:41:34 [INFO] ---------------------------------------------- +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:41:34 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:41:34 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:41:34 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:41:34 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:41:34 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:41:34 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:41:34 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:41:34 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:41:34 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:41:34 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:34 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:41:34 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:34 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:41:34 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:34 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:34 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:41:35 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:41:35 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:41:35 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:41:35 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:41:35 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:35 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:41:35 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:35 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:41:35 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:35 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:35 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:41:36 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:41:36 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:41:36 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:41:36 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:41:36 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:36 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:36 [INFO] --------------------------- +2021-11-19 12:41:36 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:41:36 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:36 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:41:36 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:41:37 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:41:37 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:41:37 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:41:37 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:41:37 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:41:37 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:41:37 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:41:37 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:41:37 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:41:37 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:41:37 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:41:37 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:37 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:41:37 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:37 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:37 [INFO] --------------------------- +2021-11-19 12:41:37 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:41:38 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:41:38 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:41:38 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:41:38 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:41:38 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:41:38 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:41:38 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:41:38 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:41:38 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:41:38 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:41:38 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:41:38 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:41:38 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:38 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:41:38 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:38 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:38 [INFO] --------------------------- +2021-11-19 12:41:38 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:41:39 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:41:39 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:41:39 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:41:39 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:41:39 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:41:39 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:41:39 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:41:39 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:41:39 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:41:39 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:41:39 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:41:39 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:41:39 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:41:39 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:39 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:39 [INFO] --------------------------- +2021-11-19 12:41:39 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:41:39 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:39 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:41:40 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:41:40 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:41:40 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:41:40 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:41:40 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:41:40 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:41:40 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:41:40 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:41:40 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:41:40 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:41:40 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:41:40 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:41:40 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:40 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:40 [INFO] --------------------------- +2021-11-19 12:41:40 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:41:40 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:40 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:41:41 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:41:41 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:41:41 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:41:41 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:41:41 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:41:41 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:41:41 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:41:41 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:41:41 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:41:41 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:41:41 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:41:41 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:41:41 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:41 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:41:41 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:41 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:41 [INFO] --------------------------- +2021-11-19 12:41:41 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:41:42 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:41:42 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:41:42 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:41:42 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:41:42 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:41:42 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:41:42 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:41:42 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:41:42 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:41:42 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:41:42 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:41:42 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:41:42 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:42 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:41:42 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:42 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:42 [INFO] --------------------------- +2021-11-19 12:41:42 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:41:42 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:41:43 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:41:43 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:41:43 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:41:43 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:41:43 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:41:43 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:41:43 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:41:43 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:41:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:43 [DEBUG] Running linter for the ENV language... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:41:43 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:41:43 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:41:43 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:41:43 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:41:43 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:43 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:41:43 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:41:43 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:43 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:41:43 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:43 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:41:43 [INFO]  +2021-11-19 12:41:43 [INFO] ---------------------------------------------- +2021-11-19 12:41:43 [INFO] ---------------------------------------------- +2021-11-19 12:41:43 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:43 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:41:43 [INFO] ---------------------------------------------- +2021-11-19 12:41:43 [INFO] ---------------------------------------------- +2021-11-19 12:41:43 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:43 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:43 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:41:43 [INFO] --------------------------- +2021-11-19 12:41:43 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:41:43 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:41:43 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:41:43 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:41:43 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:32: This { is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2046:warning:3:46: Quote this to prevent word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:46: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:53: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC1083:warning:3:62: This } is literal. Check expression (missing ;/ +?) or quote it [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:41:43 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:41:43 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:41:43 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:41:43 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:41:43 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:43 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:41:43 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:43 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:41:43 [INFO]  +2021-11-19 12:41:43 [INFO] ---------------------------------------------- +2021-11-19 12:41:44 [INFO] ---------------------------------------------- +2021-11-19 12:41:44 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:44 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:41:44 [INFO] ---------------------------------------------- +2021-11-19 12:41:44 [INFO] ---------------------------------------------- +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:41:44 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:41:44 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:41:44 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:41:44 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:41:44 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:41:44 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:41:44 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:41:44 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:41:44 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:41:44 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:41:44 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:41:44 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:44 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:44 [INFO] --------------------------- +2021-11-19 12:41:44 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:41:44 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:41:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:44 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:41:45 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:41:45 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:41:45 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:41:45 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:45 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:45 [INFO] --------------------------- +2021-11-19 12:41:45 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:41:45 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:45 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:41:45 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:41:46 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:41:46 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:41:46 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:41:46 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:41:46 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:41:46 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:41:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:46 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:41:46 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:46 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:46 [INFO] --------------------------- +2021-11-19 12:41:46 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:41:47 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:41:47 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:41:47 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:41:47 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:41:47 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:41:47 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:41:47 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:41:47 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:41:47 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:41:47 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:41:47 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:41:47 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:41:47 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:47 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:41:47 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:47 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:47 [INFO] --------------------------- +2021-11-19 12:41:47 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:41:47 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:41:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:41:48 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:41:48 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:41:48 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:41:48 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:41:48 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:41:48 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:41:48 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:41:48 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:41:48 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:41:48 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:41:48 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:41:48 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:41:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:48 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:41:48 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:48 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:48 [INFO] --------------------------- +2021-11-19 12:41:48 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:41:49 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:41:49 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:41:49 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:41:49 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:41:49 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:41:49 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:41:49 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:41:49 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:41:49 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:41:49 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:41:49 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:41:49 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:41:49 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:41:49 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:49 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:49 [INFO] --------------------------- +2021-11-19 12:41:49 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:41:49 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:41:49 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:49 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:41:50 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:41:50 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:41:50 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:41:50 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:41:50 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:41:50 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:41:50 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:41:50 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:41:50 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:41:50 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:41:50 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:41:50 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:41:50 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:50 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:50 [INFO] --------------------------- +2021-11-19 12:41:50 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:41:50 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:41:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:50 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:41:51 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:41:51 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:41:51 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:41:51 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:41:51 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:41:51 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:41:51 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:41:51 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:41:51 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:41:51 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:41:51 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:41:51 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:51 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:41:51 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:51 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:51 [INFO] --------------------------- +2021-11-19 12:41:51 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:41:51 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:41:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:41:52 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:41:52 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:41:52 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:41:52 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:41:52 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:41:52 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:41:52 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:41:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:52 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:41:52 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:52 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:52 [INFO] --------------------------- +2021-11-19 12:41:52 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:41:57 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:41:57 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:41:57 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:41:57 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:41:57 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:41:57 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:41:57 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:41:57 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:57 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:41:57 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:57 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:57 [INFO] --------------------------- +2021-11-19 12:41:57 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:41:57 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:41:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:41:58 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:58 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:58 [INFO] --------------------------- +2021-11-19 12:41:58 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:41:58 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:41:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:41:58 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:58 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:58 [INFO] --------------------------- +2021-11-19 12:41:58 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:41:58 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:41:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:41:58 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:58 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:58 [INFO] --------------------------- +2021-11-19 12:41:58 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:41:58 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:41:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:41:58 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:58 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:58 [INFO] --------------------------- +2021-11-19 12:41:58 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:41:58 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:41:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:41:58 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:58 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:41:58 [INFO] --------------------------- +2021-11-19 12:41:58 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:41:58 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:41:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:41:58 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the GO language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:41:58 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the HTML language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:41:58 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:41:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:41:58 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:41:58 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:41:58 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:41:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:58 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:41:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:41:59 [DEBUG] Running linter for the JSON language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the JSX language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the LUA language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:41:59 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:41:59 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:41:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:41:59 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:41:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:41:59 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:41:59 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:41:59 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:41:59 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:41:59 [INFO]  +2021-11-19 12:41:59 [INFO] ---------------------------------------------- +2021-11-19 12:41:59 [INFO] ---------------------------------------------- +2021-11-19 12:41:59 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:41:59 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:41:59 [INFO] ---------------------------------------------- +2021-11-19 12:41:59 [INFO] ---------------------------------------------- +2021-11-19 12:41:59 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:41:59 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:41:59 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:41:59 [INFO] --------------------------- +2021-11-19 12:41:59 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:42:00 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 12:42:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:42:00 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:42:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:42:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:00 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:42:00 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:42:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:42:00 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:42:00 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:42:00 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:42:00 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:42:00 [INFO]  +2021-11-19 12:42:00 [INFO] ---------------------------------------------- +2021-11-19 12:42:00 [INFO] ---------------------------------------------- +2021-11-19 12:42:00 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:42:00 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:42:00 [INFO] ---------------------------------------------- +2021-11-19 12:42:00 [INFO] ---------------------------------------------- +2021-11-19 12:42:00 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:42:00 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:00 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:42:00 [INFO] --------------------------- +2021-11-19 12:42:00 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:42:01 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:42:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:42:01 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PERL language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:42:01 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:42:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:42:01 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:42:01 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:42:01 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:42:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:01 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:42:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the R language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:42:02 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:42:02 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:42:02 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:42:02 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:42:02 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:42:02 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:42:02 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:42:02 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:02 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the STATES language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the SQL language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TSX language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the XML language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:42:03 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:42:03 [DEBUG] Running linter for the YAML language... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:42:03 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:42:03 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:42:03 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:42:03 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:42:03 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:42:03 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:42:03 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:42:03 [INFO]  +2021-11-19 12:42:03 [INFO] ---------------------------------------------- +2021-11-19 12:42:03 [INFO] ---------------------------------------------- +2021-11-19 12:42:03 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:42:03 [INFO] Linting [YAML] files... +2021-11-19 12:42:03 [INFO] ---------------------------------------------- +2021-11-19 12:42:03 [INFO] ---------------------------------------------- +2021-11-19 12:42:03 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:42:03 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:03 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:42:03 [INFO] --------------------------- +2021-11-19 12:42:03 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:42:04 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:42:04 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:42:04 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:42:04 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:04 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:42:04 [INFO] --------------------------- +2021-11-19 12:42:04 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:42:04 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:42:04 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:42:04 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:42:04 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:04 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:42:04 [INFO] --------------------------- +2021-11-19 12:42:04 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:42:04 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:42:04 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (99 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:42:04 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:42:04 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:04 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:42:04 [INFO] --------------------------- +2021-11-19 12:42:04 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:42:04 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:42:04 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:42:04 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:42:04 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:42:04 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:42:04 [INFO] --------------------------- +2021-11-19 12:42:04 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:42:04 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:42:04 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:42:04 [INFO] ---------------------------------------------- +2021-11-19 12:42:04 [INFO] ---------------------------------------------- +2021-11-19 12:42:04 [INFO] The script has completed +2021-11-19 12:42:04 [INFO] ---------------------------------------------- +2021-11-19 12:42:04 [INFO] ---------------------------------------------- +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:42:04 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:42:04 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:42:04 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:44:11 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:44:11 [INFO] --------------------------------------------- +2021-11-19 12:44:11 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:44:11 [INFO] - Image Creation Date:[] +2021-11-19 12:44:11 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:44:11 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:44:11 [INFO] --------------------------------------------- +2021-11-19 12:44:11 [INFO] --------------------------------------------- +2021-11-19 12:44:11 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:44:11 [INFO] - https://github.com/github/super-linter +2021-11-19 12:44:11 [INFO] --------------------------------------------- +2021-11-19 12:44:11 [DEBUG] --------------------------------------------- +2021-11-19 12:44:11 [DEBUG] Linter Version Info: +2021-11-19 12:44:11 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:44:11 [DEBUG] --------------------------------------------- +2021-11-19 12:44:11 [INFO] -------------------------------------------- +2021-11-19 12:44:11 [INFO] Gathering GitHub information... +2021-11-19 12:44:11 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:44:11 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:44:11 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:44:11 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:44:11 [INFO] -------------------------------------------- +2021-11-19 12:44:11 [INFO] Gathering user validation information... +2021-11-19 12:44:11 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for DART linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:44:11 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:44:11 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:44:11 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for R linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for XML linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:44:12 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:44:12 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:44:12 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:44:12 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:44:12 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:44:12 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:44:12 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:44:12 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:44:13 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:44:13 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:44:13 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:44:13 [DEBUG] --------------------------------------------- +2021-11-19 12:44:13 [DEBUG] Runner:[root] +2021-11-19 12:44:13 [DEBUG] ENV: +2021-11-19 12:44:13 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=1fb98a680037 +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.9gQjpmxXW0 +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:44:13 [DEBUG] --------------------------------------------- +2021-11-19 12:44:13 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:44:13 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:44:13 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for ARM... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:44:13 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for BASH... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:44:13 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:44:13 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:44:13 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:44:13 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:44:13 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:44:13 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:44:13 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for CPP... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:44:13 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:44:13 [DEBUG] Loading rules for CSS... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:13 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:44:13 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:13 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:44:13 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:44:13 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:44:13 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:44:13 [DEBUG] Loading rules for DART... +2021-11-19 12:44:13 [DEBUG] Getting linter rules for DART... +2021-11-19 12:44:13 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:13 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:44:13 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:44:14 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:44:14 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:44:14 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:44:14 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:44:14 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:44:14 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for ENV... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:44:14 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:44:14 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:44:14 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:44:14 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:44:14 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for GO... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GO... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:44:14 [INFO] ---------------------------------------------- +2021-11-19 12:44:14 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:44:14 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:44:14 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:44:14 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for HTML... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:44:14 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:44:14 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:44:14 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:44:14 [DEBUG] Loading rules for JAVA... +2021-11-19 12:44:14 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:44:14 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:14 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:44:14 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:14 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:44:14 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:14 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:44:15 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:15 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:15 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:44:15 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for JSON... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:44:15 [DEBUG] Loading rules for JSONC... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:44:15 [DEBUG] Loading rules for JSX... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:15 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:15 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:44:15 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:44:15 [DEBUG] Loading rules for LATEX... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:44:15 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for LUA... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:44:15 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:44:15 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:44:15 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:44:15 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:15 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:44:15 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:15 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:44:15 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:44:15 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:44:15 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:44:15 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:44:15 [DEBUG] Loading rules for PERL... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:15 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:44:15 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:44:15 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:44:15 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:44:15 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:44:16 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:44:16 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:44:16 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:44:16 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:44:16 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:44:16 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:44:16 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:44:16 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:44:16 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:44:16 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:44:16 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:44:16 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for R... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for R... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:16 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:44:16 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:16 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:44:16 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:44:16 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:44:16 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:44:16 [DEBUG] Loading rules for RAKU... +2021-11-19 12:44:16 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:44:16 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:16 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:44:16 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:44:17 [DEBUG] Loading rules for RUBY... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:44:17 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:44:17 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:44:17 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:44:17 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:44:17 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:44:17 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:44:17 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:44:17 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:44:17 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for STATES... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:44:17 [DEBUG] Loading rules for SQL... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:44:17 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:44:17 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:44:17 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:44:17 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:44:17 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:44:17 [DEBUG] Loading rules for TSX... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:17 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:17 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:17 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:44:17 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:44:17 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:17 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:44:17 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:17 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:44:17 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:17 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:44:17 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:44:17 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:44:18 [DEBUG] Loading rules for XML... +2021-11-19 12:44:18 [DEBUG] Getting linter rules for XML... +2021-11-19 12:44:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:18 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:44:18 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:44:18 [DEBUG] Loading rules for YAML... +2021-11-19 12:44:18 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:44:18 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:44:18 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:44:18 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:44:18 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:44:18 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:44:18 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:44:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:44:18 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:44:18 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:44:18 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:44:18 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:44:18 [DEBUG] ENV:[browser] +2021-11-19 12:44:18 [DEBUG] ENV:[es6] +2021-11-19 12:44:18 [DEBUG] ENV:[jest] +2021-11-19 12:44:18 [DEBUG] ENV:[browser] +2021-11-19 12:44:18 [DEBUG] ENV:[es6] +2021-11-19 12:44:18 [DEBUG] ENV:[jest] +2021-11-19 12:44:18 [DEBUG] --- Linter commands --- +2021-11-19 12:44:18 [DEBUG] ----------------------- +2021-11-19 12:44:18 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:44:18 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:44:18 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:44:18 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:44:18 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:44:18 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:44:18 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:44:18 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:44:18 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:44:18 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:44:18 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:44:18 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:44:18 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:44:18 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:44:18 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:44:18 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:44:18 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:44:18 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:44:18 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:44:18 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:44:18 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:44:18 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:44:18 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:44:18 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:44:18 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:44:18 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:44:18 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:44:18 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:44:18 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:44:18 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:44:18 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:44:18 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:44:18 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:44:18 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:44:18 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:44:18 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:44:18 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:44:18 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:44:18 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:44:18 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:44:18 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:44:18 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:44:18 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:44:18 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:44:18 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:44:18 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:44:18 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:44:18 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:44:18 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:44:18 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:44:18 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:44:18 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:44:18 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:44:18 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:44:18 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:44:18 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:44:18 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:44:18 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:44:18 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:44:18 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:44:18 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:44:18 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:44:18 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:44:18 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:44:18 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:44:18 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:44:18 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:44:18 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:44:18 [DEBUG] --------------------------------------------- +2021-11-19 12:44:18 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:44:18 [DEBUG] Building file list... +2021-11-19 12:44:18 [DEBUG] Validate all code base: true... +2021-11-19 12:44:18 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:44:18 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:44:18 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:44:18 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:44:18 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:44:18 [DEBUG] ---------------------------------------------- +2021-11-19 12:44:18 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:44:19 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:19 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:44:20 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:44:20 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:44:20 [DEBUG] ----------------------- +2021-11-19 12:44:20 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:44:20 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:44:20 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:44:20 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:44:20 [DEBUG] --------------------------------------------- +2021-11-19 12:44:20 [INFO] --------------------------------- +2021-11-19 12:44:20 [INFO] ------ File list to check: ------ +2021-11-19 12:44:20 [INFO] --------------------------------- +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:44:20 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:44:20 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:44:20 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:44:20 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:44:20 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:44:20 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:44:20 [DEBUG]  +2021-11-19 12:44:20 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:44:20 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:44:20 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:44:21 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:44:21 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:44:21 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:44:21 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:44:21 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:44:21 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:44:21 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:44:21 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:44:21 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:44:21 [DEBUG]  +2021-11-19 12:44:21 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:44:21 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:44:21 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:44:22 [DEBUG]  +2021-11-19 12:44:22 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:44:22 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:44:22 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:44:23 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:44:23 [DEBUG]  +2021-11-19 12:44:23 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:44:23 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:44:24 [DEBUG]  +2021-11-19 12:44:24 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:44:24 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:44:24 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:44:25 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:44:25 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:44:25 [DEBUG]  +2021-11-19 12:44:25 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:44:26 [DEBUG]  +2021-11-19 12:44:26 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:44:26 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:44:26 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:44:27 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:44:27 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:44:27 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:44:27 [DEBUG]  +2021-11-19 12:44:27 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:44:28 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:44:28 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:44:28 [DEBUG]  +2021-11-19 12:44:28 [INFO] ---------------------------------------------- +2021-11-19 12:44:28 [INFO] Successfully gathered list of files... +2021-11-19 12:44:28 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:44:28 [DEBUG] ------------------------------------ +2021-11-19 12:44:28 [DEBUG] ENV: +2021-11-19 12:44:28 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=1fb98a680037 +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.9gQjpmxXW0 +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:44:28 [DEBUG] ------------------------------------ +2021-11-19 12:44:28 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:44:28 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:44:28 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:44:28 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:28 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:44:28 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:28 [DEBUG] Running linter for the ARM language... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:44:28 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:44:28 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:44:28 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:44:28 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:44:28 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:28 [DEBUG] Running linter for the BASH language... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:44:28 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:44:28 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:44:28 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:44:28 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:44:28 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:44:28 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:44:28 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:44:28 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:28 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the CPP language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the CSS language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the DART language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:44:29 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:29 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:44:29 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:29 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:44:29 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:44:29 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:44:29 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:44:29 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:29 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:44:29 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:29 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:29 [INFO]  +2021-11-19 12:44:29 [INFO] ---------------------------------------------- +2021-11-19 12:44:29 [INFO] ---------------------------------------------- +2021-11-19 12:44:29 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:29 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:44:29 [INFO] ---------------------------------------------- +2021-11-19 12:44:29 [INFO] ---------------------------------------------- +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:44:29 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:29 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:29 [INFO] --------------------------- +2021-11-19 12:44:29 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:44:29 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:44:29 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:29 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:29 [INFO] --------------------------- +2021-11-19 12:44:29 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:44:29 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:44:29 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:29 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:29 [INFO] --------------------------- +2021-11-19 12:44:29 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:44:29 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:29 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:29 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:29 [INFO] --------------------------- +2021-11-19 12:44:29 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:44:29 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:44:29 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:29 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:29 [INFO] --------------------------- +2021-11-19 12:44:29 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:44:29 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:29 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:29 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:44:30 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:44:30 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:44:30 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:44:30 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:44:30 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:44:30 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:44:30 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:44:30 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:44:30 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:44:30 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:44:30 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:44:30 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:44:30 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:44:30 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:30 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:30 [INFO] --------------------------- +2021-11-19 12:44:30 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:44:30 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:30 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:30 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:31 [INFO] --------------------------- +2021-11-19 12:44:31 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:44:31 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:31 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:31 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:44:31 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:31 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:44:32 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:44:32 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:44:32 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:44:32 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:44:32 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:44:32 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:44:32 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:44:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:44:32 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:44:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:44:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:44:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:44:32 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:32 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:32 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:44:32 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:32 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:32 [INFO] --------------------------- +2021-11-19 12:44:32 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:44:33 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:44:33 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:44:33 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:44:33 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:44:33 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:44:33 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:44:33 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:44:33 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:44:33 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:44:33 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:44:33 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:44:33 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:44:33 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:33 [INFO] --------------------------- +2021-11-19 12:44:33 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:44:33 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:33 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:33 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:44:33 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:33 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:44:34 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:44:34 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:44:34 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:44:34 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:44:34 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:44:34 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:44:34 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:44:34 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:44:34 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:44:34 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:44:34 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:44:34 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:44:34 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:44:34 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:34 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:34 [INFO] --------------------------- +2021-11-19 12:44:34 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:44:34 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:34 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:34 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:44:35 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:44:35 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:44:35 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:44:35 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:44:35 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:44:35 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:44:35 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:44:35 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:44:35 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:44:35 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:44:35 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:44:35 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:35 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:35 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:44:35 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:35 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:35 [INFO] --------------------------- +2021-11-19 12:44:35 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:44:36 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:44:36 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:44:36 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:44:36 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:44:36 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:44:36 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:44:36 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:44:36 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:44:36 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:44:36 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:44:36 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:44:36 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:44:36 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:44:36 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:36 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:36 [INFO] --------------------------- +2021-11-19 12:44:36 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:44:36 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:36 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:44:37 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:44:37 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:44:37 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:44:37 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:44:37 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:44:37 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:44:37 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:44:37 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:44:37 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:44:37 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:44:37 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:44:37 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:44:37 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:44:37 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:37 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:37 [INFO] --------------------------- +2021-11-19 12:44:37 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:44:37 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:37 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:44:38 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:44:38 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:44:38 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:44:38 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:44:38 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:44:38 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:44:38 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:44:38 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:44:38 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:44:38 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:38 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:38 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:44:38 [INFO] --------------------------- +2021-11-19 12:44:38 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:44:38 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:44:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:38 [DEBUG] Running linter for the ENV language... +2021-11-19 12:44:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:44:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:38 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:44:38 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:44:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:44:38 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:44:38 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:44:38 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:44:38 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:38 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:44:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:44:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:38 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:44:38 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:44:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:44:38 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:38 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:44:38 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:38 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:38 [INFO]  +2021-11-19 12:44:38 [INFO] ---------------------------------------------- +2021-11-19 12:44:38 [INFO] ---------------------------------------------- +2021-11-19 12:44:38 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:38 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:44:39 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 12:44:39 [ERROR] Found errors in [actionlint] linter! +2021-11-19 12:44:39 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:47: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:54: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:44:39 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:47: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:54: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +------ +2021-11-19 12:44:39 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:44:39 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:44:39 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:39 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:44:39 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:44:39 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:44:39 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:39 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:44:39 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:39 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:39 [INFO]  +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:39 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [INFO] ---------------------------------------------- +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:44:39 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:44:39 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:44:39 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:44:39 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:44:39 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:44:39 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:44:39 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:44:39 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:44:39 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:44:39 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:44:39 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:39 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:44:39 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:39 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:39 [INFO] --------------------------- +2021-11-19 12:44:39 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:44:40 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:44:40 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:44:40 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:44:40 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:44:40 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:44:40 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:40 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:44:40 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:40 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:44:40 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:40 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:40 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:44:41 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:44:41 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:44:41 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:44:41 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:41 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:44:41 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:41 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:41 [INFO] --------------------------- +2021-11-19 12:44:41 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:44:41 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:44:41 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:44:42 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:44:42 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:44:42 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:44:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:44:42 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:44:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:44:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:44:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:44:42 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:44:42 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:44:42 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:44:42 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:42 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:44:42 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:42 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:42 [INFO] --------------------------- +2021-11-19 12:44:42 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:44:42 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:44:42 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:44:43 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:44:43 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:44:43 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:44:43 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:44:43 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:44:43 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:44:43 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:44:43 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:44:43 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:44:43 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:44:43 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:44:43 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:43 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:44:43 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:43 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:43 [INFO] --------------------------- +2021-11-19 12:44:43 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:44:43 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:44:44 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:44:44 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:44:44 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:44:44 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:44:44 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:44:44 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:44:44 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:44:44 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:44:44 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:44:44 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:44:44 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:44 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:44:44 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:44 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:44 [INFO] --------------------------- +2021-11-19 12:44:44 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:44:44 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:44:44 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:44:45 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:44:45 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:44:45 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:44:45 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:44:45 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:44:45 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:44:45 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:44:45 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:44:45 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:45 [INFO] --------------------------- +2021-11-19 12:44:45 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:44:45 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:44:45 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:45 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:44:45 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:45 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:44:46 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:44:46 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:44:46 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:44:46 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:44:46 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:44:46 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:44:46 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:44:46 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:44:46 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:44:46 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:44:46 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:44:46 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:46 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:46 [INFO] --------------------------- +2021-11-19 12:44:46 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:44:46 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:44:46 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:46 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:44:47 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:44:47 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:44:47 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:44:47 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:44:47 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:44:47 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:44:47 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:44:47 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:44:47 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:44:47 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:44:47 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:44:47 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:44:47 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:47 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:44:47 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:47 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:47 [INFO] --------------------------- +2021-11-19 12:44:47 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:44:47 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:44:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:48 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:44:48 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:48 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:48 [INFO] --------------------------- +2021-11-19 12:44:48 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:44:48 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:44:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:48 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:44:48 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:48 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:48 [INFO] --------------------------- +2021-11-19 12:44:48 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:44:48 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:44:48 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:48 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:44:48 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:48 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:48 [INFO] --------------------------- +2021-11-19 12:44:48 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:44:53 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:44:53 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:44:53 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:44:53 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:44:53 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:44:53 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:44:53 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:44:53 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:44:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:53 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:44:53 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:53 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:53 [INFO] --------------------------- +2021-11-19 12:44:53 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:44:54 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:44:54 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:54 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:54 [INFO] --------------------------- +2021-11-19 12:44:54 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:44:54 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:44:54 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:54 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:54 [INFO] --------------------------- +2021-11-19 12:44:54 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:44:54 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:44:54 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:54 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:54 [INFO] --------------------------- +2021-11-19 12:44:54 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:44:54 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:44:54 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:54 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:54 [INFO] --------------------------- +2021-11-19 12:44:54 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:44:54 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:44:54 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:54 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:44:54 [INFO] --------------------------- +2021-11-19 12:44:54 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:44:54 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:44:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:54 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the GO language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:44:54 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the HTML language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:44:54 [DEBUG] Running linter for the JSON language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:44:54 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:54 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:44:54 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:54 [DEBUG] Running linter for the JSX language... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:44:54 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:54 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:44:54 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:44:54 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:44:55 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:55 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:44:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:44:55 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:44:55 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:55 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:44:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:44:55 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:44:55 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:55 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:44:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:44:55 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:44:55 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:55 [DEBUG] Running linter for the LUA language... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:44:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:44:55 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:44:55 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:55 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:44:55 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:44:55 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:44:55 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:44:55 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:44:55 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:44:55 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:44:55 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:55 [INFO]  +2021-11-19 12:44:55 [INFO] ---------------------------------------------- +2021-11-19 12:44:55 [INFO] ---------------------------------------------- +2021-11-19 12:44:55 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:44:55 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:44:55 [INFO] ---------------------------------------------- +2021-11-19 12:44:55 [INFO] ---------------------------------------------- +2021-11-19 12:44:55 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:44:55 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:55 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:44:55 [INFO] --------------------------- +2021-11-19 12:44:55 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:44:56 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 12:44:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:56 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:44:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:44:56 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:56 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:44:56 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:44:56 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:44:56 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:44:56 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:44:56 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:44:56 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:56 [INFO]  +2021-11-19 12:44:56 [INFO] ---------------------------------------------- +2021-11-19 12:44:56 [INFO] ---------------------------------------------- +2021-11-19 12:44:56 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:44:56 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:44:56 [INFO] ---------------------------------------------- +2021-11-19 12:44:56 [INFO] ---------------------------------------------- +2021-11-19 12:44:56 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:44:56 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:56 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:44:56 [INFO] --------------------------- +2021-11-19 12:44:56 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:44:57 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:44:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:44:57 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PERL language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:44:57 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:44:57 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:44:57 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:44:57 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:44:57 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:57 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:44:57 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:44:57 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the R language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:44:58 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:44:58 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:44:58 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:44:58 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:58 [DEBUG] Running linter for the STATES language... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:44:58 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:44:58 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:44:58 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:44:58 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the SQL language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TSX language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the XML language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:44:59 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:44:59 [DEBUG] Running linter for the YAML language... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:44:59 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:44:59 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:44:59 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:44:59 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:44:59 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:44:59 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:44:59 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:44:59 [INFO]  +2021-11-19 12:44:59 [INFO] ---------------------------------------------- +2021-11-19 12:44:59 [INFO] ---------------------------------------------- +2021-11-19 12:44:59 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:44:59 [INFO] Linting [YAML] files... +2021-11-19 12:44:59 [INFO] ---------------------------------------------- +2021-11-19 12:44:59 [INFO] ---------------------------------------------- +2021-11-19 12:44:59 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:44:59 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:44:59 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:44:59 [INFO] --------------------------- +2021-11-19 12:44:59 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:45:00 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:45:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:45:00 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:45:00 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:45:00 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:45:00 [INFO] --------------------------- +2021-11-19 12:45:00 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:45:00 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:45:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:45:00 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:45:00 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:45:00 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:45:00 [INFO] --------------------------- +2021-11-19 12:45:00 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:45:00 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:45:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:45:00 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:45:00 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:45:00 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:45:00 [INFO] --------------------------- +2021-11-19 12:45:00 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:45:00 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:45:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:45:00 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:45:00 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:45:00 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:45:00 [INFO] --------------------------- +2021-11-19 12:45:00 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:45:00 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:45:00 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:45:00 [INFO] ---------------------------------------------- +2021-11-19 12:45:00 [INFO] ---------------------------------------------- +2021-11-19 12:45:00 [INFO] The script has completed +2021-11-19 12:45:00 [INFO] ---------------------------------------------- +2021-11-19 12:45:00 [INFO] ---------------------------------------------- +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:45:00 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:45:00 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:45:00 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 12:48:50 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 12:48:51 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 12:48:51 [INFO] --------------------------------------------- +2021-11-19 12:48:51 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 12:48:51 [INFO] - Image Creation Date:[] +2021-11-19 12:48:51 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:48:51 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 12:48:51 [INFO] --------------------------------------------- +2021-11-19 12:48:51 [INFO] --------------------------------------------- +2021-11-19 12:48:51 [INFO] The Super-Linter source code can be found at: +2021-11-19 12:48:51 [INFO] - https://github.com/github/super-linter +2021-11-19 12:48:51 [INFO] --------------------------------------------- +2021-11-19 12:48:51 [DEBUG] --------------------------------------------- +2021-11-19 12:48:51 [DEBUG] Linter Version Info: +2021-11-19 12:48:51 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 12:48:51 [DEBUG] --------------------------------------------- +2021-11-19 12:48:51 [INFO] -------------------------------------------- +2021-11-19 12:48:51 [INFO] Gathering GitHub information... +2021-11-19 12:48:51 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 12:48:51 [INFO] bypassing GitHub Actions variables... +2021-11-19 12:48:51 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 12:48:51 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 12:48:51 [INFO] -------------------------------------------- +2021-11-19 12:48:51 [INFO] Gathering user validation information... +2021-11-19 12:48:51 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for ARM linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CPP linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for CSS linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for DART linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for ENV linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for HTML linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JAVA linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JSON linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JSONC linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for JSX linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for LATEX linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for LUA linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PERL linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for R linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 12:48:51 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 12:48:51 [DEBUG] Defining variables for RAKU linter... +2021-11-19 12:48:51 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for RUBY linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for STATES linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for SQL linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TSX linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for XML linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 12:48:52 [DEBUG] Defining variables for YAML linter... +2021-11-19 12:48:52 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 12:48:52 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 12:48:52 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 12:48:52 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 12:48:52 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 12:48:52 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [DART] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 12:48:52 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [R] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [XML] files in code base... +2021-11-19 12:48:52 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 12:48:52 [DEBUG] --- DEBUG INFO --- +2021-11-19 12:48:52 [DEBUG] --------------------------------------------- +2021-11-19 12:48:52 [DEBUG] Runner:[root] +2021-11-19 12:48:52 [DEBUG] ENV: +2021-11-19 12:48:52 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=6b1e1a4858fd +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.zPkF6XvwCy +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 12:48:52 [DEBUG] --------------------------------------------- +2021-11-19 12:48:52 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 12:48:52 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 12:48:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:52 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 12:48:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:52 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 12:48:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:52 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:48:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 12:48:52 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 12:48:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:48:52 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 12:48:52 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 12:48:52 [DEBUG] Loading rules for ARM... +2021-11-19 12:48:52 [DEBUG] Getting linter rules for ARM... +2021-11-19 12:48:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:52 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 12:48:52 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:52 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 12:48:52 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:52 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 12:48:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 12:48:52 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:48:52 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 12:48:52 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 12:48:52 [DEBUG] Loading rules for BASH... +2021-11-19 12:48:52 [DEBUG] Getting linter rules for BASH... +2021-11-19 12:48:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:52 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 12:48:52 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 12:48:52 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 12:48:52 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 12:48:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:52 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 12:48:52 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 12:48:52 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 12:48:52 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 12:48:52 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 12:48:53 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 12:48:53 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 12:48:53 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for CLOJURE... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 12:48:53 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 12:48:53 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for CPP... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for CPP... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 12:48:53 [DEBUG] Loading rules for CSHARP... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 12:48:53 [DEBUG] Loading rules for CSS... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for CSS... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 12:48:53 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for DART... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for DART... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 12:48:53 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 12:48:53 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 12:48:53 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 12:48:53 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 12:48:53 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 12:48:53 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for ENV... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for ENV... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 12:48:53 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 12:48:53 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 12:48:53 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 12:48:53 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for GHERKIN... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 12:48:53 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 12:48:53 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for GO... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for GO... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 12:48:53 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:53 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 12:48:53 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:53 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:48:53 [INFO] ---------------------------------------------- +2021-11-19 12:48:53 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 12:48:53 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:48:53 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 12:48:53 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:48:53 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:48:53 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:53 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 12:48:54 [DEBUG] Loading rules for GROOVY... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 12:48:54 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for HTML... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for HTML... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 12:48:54 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for JAVA... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JAVA... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 12:48:54 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:54 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:54 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for JSCPD... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 12:48:54 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for JSON... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JSON... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 12:48:54 [DEBUG] Loading rules for JSONC... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JSONC... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 12:48:54 [DEBUG] Loading rules for JSX... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for JSX... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:54 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:54 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 12:48:54 [DEBUG] Loading rules for KOTLIN... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 12:48:54 [DEBUG] Loading rules for LATEX... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for LATEX... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 12:48:54 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for LUA... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for LUA... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 12:48:54 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 12:48:54 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 12:48:54 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 12:48:54 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for OPENAPI... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:54 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 12:48:54 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 12:48:54 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:48:54 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 12:48:54 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 12:48:54 [DEBUG] Loading rules for PERL... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for PERL... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 12:48:54 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 12:48:54 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 12:48:54 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:54 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 12:48:54 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:54 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 12:48:54 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 12:48:55 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 12:48:55 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 12:48:55 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 12:48:55 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 12:48:55 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 12:48:55 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 12:48:55 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 12:48:55 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 12:48:55 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 12:48:55 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 12:48:55 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 12:48:55 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for R... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for R... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 12:48:55 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for RAKU... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for RAKU... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 12:48:55 [DEBUG] Loading rules for RUBY... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for RUBY... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 12:48:55 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 12:48:55 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for RUST_2015... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 12:48:55 [DEBUG] Loading rules for RUST_2018... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 12:48:55 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 12:48:55 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 12:48:55 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 12:48:55 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:55 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 12:48:55 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:55 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 12:48:55 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:55 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 12:48:55 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:48:55 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 12:48:55 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 12:48:55 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 12:48:56 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 12:48:56 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 12:48:56 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for STATES... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for STATES... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 12:48:56 [DEBUG] Loading rules for SQL... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for SQL... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 12:48:56 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 12:48:56 [DEBUG] Loading rules for TEKTON... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 12:48:56 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 12:48:56 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 12:48:56 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 12:48:56 [DEBUG] Loading rules for TSX... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TSX... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:56 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:56 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 12:48:56 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 12:48:56 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 12:48:56 [DEBUG] Loading rules for XML... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for XML... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 12:48:56 [DEBUG] Loading rules for YAML... +2021-11-19 12:48:56 [DEBUG] Getting linter rules for YAML... +2021-11-19 12:48:56 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 12:48:56 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 12:48:56 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 12:48:56 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 12:48:56 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 12:48:56 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 12:48:56 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 12:48:56 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:48:56 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 12:48:56 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 12:48:56 [DEBUG] ENV:[browser] +2021-11-19 12:48:56 [DEBUG] ENV:[es6] +2021-11-19 12:48:56 [DEBUG] ENV:[jest] +2021-11-19 12:48:57 [DEBUG] ENV:[browser] +2021-11-19 12:48:57 [DEBUG] ENV:[es6] +2021-11-19 12:48:57 [DEBUG] ENV:[jest] +2021-11-19 12:48:57 [DEBUG] --- Linter commands --- +2021-11-19 12:48:57 [DEBUG] ----------------------- +2021-11-19 12:48:57 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 12:48:57 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 12:48:57 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 12:48:57 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 12:48:57 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 12:48:57 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 12:48:57 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 12:48:57 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 12:48:57 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 12:48:57 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 12:48:57 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 12:48:57 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 12:48:57 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 12:48:57 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 12:48:57 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 12:48:57 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 12:48:57 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 12:48:57 [DEBUG] Linter key: R, command: lintr +2021-11-19 12:48:57 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 12:48:57 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 12:48:57 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 12:48:57 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:48:57 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 12:48:57 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 12:48:57 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 12:48:57 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:48:57 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 12:48:57 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 12:48:57 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 12:48:57 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 12:48:57 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 12:48:57 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 12:48:57 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 12:48:57 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 12:48:57 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 12:48:57 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 12:48:57 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 12:48:57 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 12:48:57 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 12:48:57 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 12:48:57 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 12:48:57 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 12:48:57 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 12:48:57 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 12:48:57 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 12:48:57 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 12:48:57 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 12:48:57 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 12:48:57 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 12:48:57 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 12:48:57 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 12:48:57 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 12:48:57 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 12:48:57 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 12:48:57 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 12:48:57 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 12:48:57 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 12:48:57 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 12:48:57 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 12:48:57 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 12:48:57 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 12:48:57 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 12:48:57 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 12:48:57 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 12:48:57 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 12:48:57 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 12:48:57 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 12:48:57 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 12:48:57 [DEBUG] --------------------------------------------- +2021-11-19 12:48:57 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 12:48:57 [DEBUG] Building file list... +2021-11-19 12:48:57 [DEBUG] Validate all code base: true... +2021-11-19 12:48:57 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 12:48:57 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 12:48:57 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 12:48:57 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 12:48:57 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 12:48:57 [DEBUG] ---------------------------------------------- +2021-11-19 12:48:57 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 12:48:57 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:48:57 [DEBUG] Loading the files list that Git ignores... +2021-11-19 12:48:58 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 12:48:58 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 12:48:58 [DEBUG] ----------------------- +2021-11-19 12:48:58 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 12:48:58 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 12:48:58 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 12:48:58 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 12:48:58 [DEBUG] --------------------------------------------- +2021-11-19 12:48:58 [INFO] --------------------------------- +2021-11-19 12:48:58 [INFO] ------ File list to check: ------ +2021-11-19 12:48:58 [INFO] --------------------------------- +2021-11-19 12:48:58 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 12:48:58 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 12:48:58 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 12:48:58 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 12:48:58 [DEBUG]  +2021-11-19 12:48:58 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 12:48:58 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 12:48:58 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 12:48:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 12:48:58 [DEBUG]  +2021-11-19 12:48:58 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:48:58 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 12:48:58 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:48:58 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 12:48:58 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:48:58 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:48:58 [DEBUG]  +2021-11-19 12:48:58 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 12:48:59 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 12:48:59 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 12:48:59 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 12:48:59 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 12:48:59 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 12:48:59 [DEBUG]  +2021-11-19 12:48:59 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:48:59 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 12:48:59 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:49:00 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 12:49:00 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:49:00 [DEBUG]  +2021-11-19 12:49:00 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 12:49:01 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 12:49:01 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 12:49:01 [DEBUG]  +2021-11-19 12:49:01 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 12:49:02 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 12:49:02 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 12:49:02 [DEBUG]  +2021-11-19 12:49:02 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 12:49:03 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 12:49:03 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 12:49:03 [DEBUG]  +2021-11-19 12:49:03 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:49:04 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 12:49:04 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 12:49:04 [DEBUG]  +2021-11-19 12:49:04 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 12:49:05 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 12:49:05 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 12:49:05 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 12:49:05 [DEBUG]  +2021-11-19 12:49:05 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 12:49:06 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 12:49:06 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 12:49:06 [DEBUG]  +2021-11-19 12:49:06 [INFO] ---------------------------------------------- +2021-11-19 12:49:06 [INFO] Successfully gathered list of files... +2021-11-19 12:49:06 [DEBUG] --- ENV (before running linters) --- +2021-11-19 12:49:06 [DEBUG] ------------------------------------ +2021-11-19 12:49:06 [DEBUG] ENV: +2021-11-19 12:49:06 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=6b1e1a4858fd +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.zPkF6XvwCy +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 12:49:06 [DEBUG] ------------------------------------ +2021-11-19 12:49:06 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 12:49:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 12:49:06 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 12:49:06 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:06 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 12:49:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:06 [DEBUG] Running linter for the ARM language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 12:49:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 12:49:06 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 12:49:06 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 12:49:06 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 12:49:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:06 [DEBUG] Running linter for the BASH language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:49:06 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 12:49:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 12:49:06 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 12:49:06 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 12:49:06 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 12:49:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:06 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 12:49:06 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 12:49:06 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 12:49:06 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 12:49:06 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 12:49:06 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:06 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 12:49:06 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:06 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the CPP language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the CSHARP language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the CSS language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the DART language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 12:49:07 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:07 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 12:49:07 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:07 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 12:49:07 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 12:49:07 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 12:49:07 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 12:49:07 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:07 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 12:49:07 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:07 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:07 [INFO]  +2021-11-19 12:49:07 [INFO] ---------------------------------------------- +2021-11-19 12:49:07 [INFO] ---------------------------------------------- +2021-11-19 12:49:07 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:07 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 12:49:07 [INFO] ---------------------------------------------- +2021-11-19 12:49:07 [INFO] ---------------------------------------------- +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:49:07 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:49:07 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:49:07 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:49:07 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:49:07 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:07 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:49:07 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:07 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:07 [INFO] --------------------------- +2021-11-19 12:49:07 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:49:08 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:49:08 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:49:08 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:49:08 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:49:08 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:49:08 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:49:08 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:49:08 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:49:08 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:49:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:49:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:49:08 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:49:08 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:08 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:49:08 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:08 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:08 [INFO] --------------------------- +2021-11-19 12:49:08 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:49:08 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:49:09 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:09 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:49:09 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:09 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:09 [INFO] --------------------------- +2021-11-19 12:49:09 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:49:09 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:49:10 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:49:10 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:49:10 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:49:10 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:49:10 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:49:10 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:49:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:49:10 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:49:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:49:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:49:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:49:10 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:49:10 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:10 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:49:10 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:10 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:10 [INFO] --------------------------- +2021-11-19 12:49:10 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:49:11 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:49:11 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:49:11 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:49:11 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:49:11 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:49:11 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:49:11 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:49:11 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:49:11 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:49:11 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:49:11 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:49:11 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:49:11 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:11 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:11 [INFO] --------------------------- +2021-11-19 12:49:11 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:49:11 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:11 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:11 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:49:11 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:49:12 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:49:12 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:49:12 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:49:12 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:49:12 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:49:12 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:49:12 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:49:12 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:49:12 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:49:12 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:49:12 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:49:12 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:49:12 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:12 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:12 [INFO] --------------------------- +2021-11-19 12:49:12 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:49:12 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:12 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:12 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:49:13 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:49:13 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:49:13 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:49:13 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:49:13 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:49:13 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:49:13 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:49:13 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:49:13 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:49:13 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:49:13 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:49:13 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:49:13 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:13 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:13 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:49:13 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:13 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:13 [INFO] --------------------------- +2021-11-19 12:49:13 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:49:14 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:49:14 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:49:14 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:49:14 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:49:14 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:49:14 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:49:14 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:49:14 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:49:14 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:49:14 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:49:14 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:49:14 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:49:14 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:49:14 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:14 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:14 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:49:14 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:14 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:14 [INFO] --------------------------- +2021-11-19 12:49:14 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:49:15 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:49:15 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:49:15 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:49:15 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:49:15 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:49:15 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:49:15 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:49:15 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:49:15 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:49:15 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:49:15 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:49:15 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:49:15 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:49:15 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:49:15 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:15 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:15 [INFO] --------------------------- +2021-11-19 12:49:15 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:49:15 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:15 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:49:16 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:49:16 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:49:16 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:49:16 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:49:16 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:49:16 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:49:16 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:49:16 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:49:16 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Running linter for the ENV language... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 12:49:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 12:49:16 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 12:49:16 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 12:49:16 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 12:49:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:16 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 12:49:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 12:49:16 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:16 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 12:49:16 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:16 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:16 [INFO]  +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:16 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:49:16 [INFO] - File:[checks.yml] was linted with [actionlint] successfully +2021-11-19 12:49:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:16 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 12:49:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 12:49:16 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 12:49:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 12:49:16 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:16 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 12:49:16 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:16 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:16 [INFO]  +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:16 [INFO] Linting [GITLEAKS] files... +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [INFO] ---------------------------------------------- +2021-11-19 12:49:16 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 12:49:16 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:16 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:16 [INFO] --------------------------- +2021-11-19 12:49:16 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 12:49:17 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:49:17 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:49:17 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:49:17 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 12:49:17 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:49:17 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:49:17 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 12:49:17 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 12:49:17 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:49:17 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 12:49:17 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 12:49:17 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 12:49:17 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:17 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 12:49:17 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:17 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:17 [INFO] --------------------------- +2021-11-19 12:49:17 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 12:49:17 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:49:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 12:49:18 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 12:49:18 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:18 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 12:49:18 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:18 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:18 [INFO] --------------------------- +2021-11-19 12:49:18 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 12:49:18 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 12:49:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 12:49:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 12:49:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 12:49:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 12:49:19 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 12:49:19 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 12:49:19 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 12:49:19 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 12:49:19 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 12:49:19 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:19 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 12:49:19 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:19 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:19 [INFO] --------------------------- +2021-11-19 12:49:19 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 12:49:19 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 12:49:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 12:49:20 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 12:49:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 12:49:20 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 12:49:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 12:49:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 12:49:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 12:49:20 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 12:49:20 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 12:49:20 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 12:49:20 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:20 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 12:49:20 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:20 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:20 [INFO] --------------------------- +2021-11-19 12:49:20 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 12:49:20 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 12:49:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 12:49:21 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 12:49:21 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 12:49:21 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 12:49:21 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 12:49:21 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 12:49:21 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 12:49:21 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 12:49:21 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 12:49:21 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 12:49:21 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:21 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 12:49:21 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 12:49:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:21 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 12:49:21 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:21 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:21 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 12:49:22 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 12:49:22 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 12:49:22 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 12:49:22 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 12:49:22 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 12:49:22 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 12:49:22 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 12:49:22 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 12:49:22 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 12:49:22 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 12:49:22 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:22 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:22 [INFO] --------------------------- +2021-11-19 12:49:22 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 12:49:22 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 12:49:22 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:22 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 12:49:23 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 12:49:23 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 12:49:23 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 12:49:23 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 12:49:23 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 12:49:23 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 12:49:23 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 12:49:23 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 12:49:23 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 12:49:23 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:23 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 12:49:23 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:23 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:23 [INFO] --------------------------- +2021-11-19 12:49:23 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 12:49:24 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 12:49:24 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 12:49:24 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 12:49:24 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 12:49:24 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 12:49:24 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 12:49:24 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 12:49:24 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 12:49:24 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 12:49:24 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 12:49:24 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 12:49:24 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:24 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 12:49:24 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:24 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:24 [INFO] --------------------------- +2021-11-19 12:49:24 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 12:49:25 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 12:49:25 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 12:49:25 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 12:49:25 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 12:49:25 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/option.go] +2021-11-19 12:49:25 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 12:49:25 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 12:49:25 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 12:49:25 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:25 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 12:49:25 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:25 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:25 [INFO] --------------------------- +2021-11-19 12:49:25 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 12:49:26 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 12:49:26 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 12:49:26 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 12:49:26 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/server.go] +2021-11-19 12:49:26 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 12:49:26 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 12:49:26 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:26 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 12:49:26 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:26 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:26 [INFO] --------------------------- +2021-11-19 12:49:26 [INFO] File:[/tmp/lint/service.go] +2021-11-19 12:49:27 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:49:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:27 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 12:49:27 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:27 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:27 [INFO] --------------------------- +2021-11-19 12:49:27 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 12:49:27 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:49:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:27 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 12:49:27 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:27 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:27 [INFO] --------------------------- +2021-11-19 12:49:27 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 12:49:27 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 12:49:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:27 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 12:49:27 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:27 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:27 [INFO] --------------------------- +2021-11-19 12:49:27 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 12:49:27 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 12:49:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:27 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 12:49:27 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:27 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:27 [INFO] --------------------------- +2021-11-19 12:49:27 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 12:49:27 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 12:49:27 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:27 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 12:49:27 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:27 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:27 [INFO] --------------------------- +2021-11-19 12:49:27 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 12:49:35 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 12:49:36 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 12:49:36 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 12:49:36 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 12:49:36 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 12:49:36 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 12:49:36 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 12:49:36 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 12:49:36 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 12:49:36 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 12:49:36 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 12:49:36 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:36 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 12:49:36 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:36 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:36 [INFO] --------------------------- +2021-11-19 12:49:36 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 12:49:37 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 12:49:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:37 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 12:49:37 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:37 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:37 [INFO] --------------------------- +2021-11-19 12:49:37 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 12:49:37 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 12:49:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:37 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 12:49:37 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:37 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 12:49:37 [INFO] --------------------------- +2021-11-19 12:49:37 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 12:49:37 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 12:49:37 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:37 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the GO language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:49:37 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the GROOVY language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the HTML language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JAVA language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JSCPD language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:49:37 [DEBUG] Running linter for the JSON language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JSONC language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the JSX language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 12:49:37 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 12:49:37 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 12:49:37 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 12:49:37 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 12:49:37 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:37 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 12:49:37 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 12:49:37 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 12:49:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 12:49:38 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 12:49:38 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 12:49:38 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 12:49:38 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:38 [DEBUG] Running linter for the LATEX language... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 12:49:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 12:49:38 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 12:49:38 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 12:49:38 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 12:49:38 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:38 [DEBUG] Running linter for the LUA language... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 12:49:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 12:49:38 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 12:49:38 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 12:49:38 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 12:49:38 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:38 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 12:49:38 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 12:49:38 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 12:49:38 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 12:49:38 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 12:49:38 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:49:38 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:38 [INFO]  +2021-11-19 12:49:38 [INFO] ---------------------------------------------- +2021-11-19 12:49:38 [INFO] ---------------------------------------------- +2021-11-19 12:49:38 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:49:38 [INFO] Linting [MARKDOWN] files... +2021-11-19 12:49:38 [INFO] ---------------------------------------------- +2021-11-19 12:49:38 [INFO] ---------------------------------------------- +2021-11-19 12:49:38 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:49:38 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:38 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 12:49:38 [INFO] --------------------------- +2021-11-19 12:49:38 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:49:38 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 12:49:38 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:38 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 12:49:38 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 12:49:39 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:39 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 12:49:39 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 12:49:39 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 12:49:39 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 12:49:39 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 12:49:39 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 12:49:39 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:39 [INFO]  +2021-11-19 12:49:39 [INFO] ---------------------------------------------- +2021-11-19 12:49:39 [INFO] ---------------------------------------------- +2021-11-19 12:49:39 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 12:49:39 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 12:49:39 [INFO] ---------------------------------------------- +2021-11-19 12:49:39 [INFO] ---------------------------------------------- +2021-11-19 12:49:39 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 12:49:39 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:39 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 12:49:39 [INFO] --------------------------- +2021-11-19 12:49:39 [INFO] File:[/tmp/lint/README.md] +2021-11-19 12:49:40 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 12:49:40 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 12:49:40 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PERL language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 12:49:40 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 12:49:40 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 12:49:40 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 12:49:40 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:40 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 12:49:40 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 12:49:40 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 12:49:40 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the R language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the RAKU language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the RUBY language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 12:49:41 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the STATES language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 12:49:41 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:41 [DEBUG] Running linter for the SQL language... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 12:49:41 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 12:49:41 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 12:49:41 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 12:49:41 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 12:49:41 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:41 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TEKTON language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TSX language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the XML language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 12:49:42 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 12:49:42 [DEBUG] Running linter for the YAML language... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 12:49:42 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 12:49:42 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 12:49:42 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 12:49:42 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:49:42 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 12:49:42 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:49:42 [DEBUG] Workspace path: /tmp/lint +2021-11-19 12:49:42 [INFO]  +2021-11-19 12:49:42 [INFO] ---------------------------------------------- +2021-11-19 12:49:42 [INFO] ---------------------------------------------- +2021-11-19 12:49:42 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 12:49:42 [INFO] Linting [YAML] files... +2021-11-19 12:49:42 [INFO] ---------------------------------------------- +2021-11-19 12:49:42 [INFO] ---------------------------------------------- +2021-11-19 12:49:42 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 12:49:42 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:42 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:49:42 [INFO] --------------------------- +2021-11-19 12:49:42 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 12:49:43 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 12:49:43 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:49:43 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 12:49:43 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:43 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:49:43 [INFO] --------------------------- +2021-11-19 12:49:43 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 12:49:43 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:49:43 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:49:43 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 12:49:43 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:43 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:49:43 [INFO] --------------------------- +2021-11-19 12:49:43 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 12:49:43 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 12:49:43 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 12:49:43 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 12:49:43 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:43 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:49:43 [INFO] --------------------------- +2021-11-19 12:49:43 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 12:49:43 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 12:49:43 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:49:43 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 12:49:43 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 12:49:43 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 12:49:43 [INFO] --------------------------- +2021-11-19 12:49:43 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 12:49:43 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 12:49:43 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 12:49:43 [INFO] ---------------------------------------------- +2021-11-19 12:49:43 [INFO] ---------------------------------------------- +2021-11-19 12:49:43 [INFO] The script has completed +2021-11-19 12:49:43 [INFO] ---------------------------------------------- +2021-11-19 12:49:43 [INFO] ---------------------------------------------- +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status success +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 12:49:43 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 12:49:43 [NOTICE] All file(s) linted successfully with no errors detected +2021-11-19 12:49:43 [INFO] ---------------------------------------------- +super-linter Log +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 13:04:31 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 13:04:31 [INFO] --------------------------------------------- +2021-11-19 13:04:31 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 13:04:31 [INFO] - Image Creation Date:[] +2021-11-19 13:04:31 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 13:04:31 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 13:04:31 [INFO] --------------------------------------------- +2021-11-19 13:04:31 [INFO] --------------------------------------------- +2021-11-19 13:04:31 [INFO] The Super-Linter source code can be found at: +2021-11-19 13:04:31 [INFO] - https://github.com/github/super-linter +2021-11-19 13:04:31 [INFO] --------------------------------------------- +2021-11-19 13:04:31 [DEBUG] --------------------------------------------- +2021-11-19 13:04:31 [DEBUG] Linter Version Info: +2021-11-19 13:04:31 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 13:04:31 [DEBUG] --------------------------------------------- +2021-11-19 13:04:31 [INFO] -------------------------------------------- +2021-11-19 13:04:31 [INFO] Gathering GitHub information... +2021-11-19 13:04:31 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 13:04:31 [INFO] bypassing GitHub Actions variables... +2021-11-19 13:04:31 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 13:04:31 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 13:04:31 [INFO] -------------------------------------------- +2021-11-19 13:04:31 [INFO] Gathering user validation information... +2021-11-19 13:04:32 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for ARM linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CPP linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for CSS linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for DART linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for ENV linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for HTML linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JAVA linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JSON linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JSONC linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for JSX linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for LATEX linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for LUA linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PERL linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for R linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for RAKU linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for RUBY linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for STATES linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for SQL linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 13:04:32 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 13:04:32 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 13:04:32 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for TSX linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for XML linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 13:04:33 [DEBUG] Defining variables for YAML linter... +2021-11-19 13:04:33 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 13:04:33 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 13:04:33 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 13:04:33 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 13:04:33 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 13:04:33 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [DART] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 13:04:33 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [R] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [XML] files in code base... +2021-11-19 13:04:33 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 13:04:33 [DEBUG] --- DEBUG INFO --- +2021-11-19 13:04:33 [DEBUG] --------------------------------------------- +2021-11-19 13:04:33 [DEBUG] Runner:[root] +2021-11-19 13:04:33 [DEBUG] ENV: +2021-11-19 13:04:33 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=234ba3a1035e +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.m0rV6nEnRN +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 13:04:33 [DEBUG] --------------------------------------------- +2021-11-19 13:04:33 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:33 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 13:04:33 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:33 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 13:04:33 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 13:04:33 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 13:04:33 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 13:04:33 [DEBUG] Loading rules for ARM... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for ARM... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:33 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 13:04:33 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:33 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 13:04:33 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 13:04:33 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 13:04:33 [DEBUG] Loading rules for BASH... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for BASH... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 13:04:33 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 13:04:33 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 13:04:33 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:33 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 13:04:33 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:33 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 13:04:33 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 13:04:33 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 13:04:33 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 13:04:33 [DEBUG] Loading rules for CLOJURE... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:33 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 13:04:33 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:33 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 13:04:33 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 13:04:33 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 13:04:33 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 13:04:33 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 13:04:33 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 13:04:33 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:33 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 13:04:33 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:33 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 13:04:34 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for CPP... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for CPP... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 13:04:34 [DEBUG] Loading rules for CSHARP... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 13:04:34 [DEBUG] Loading rules for CSS... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for CSS... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 13:04:34 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for DART... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for DART... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 13:04:34 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 13:04:34 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 13:04:34 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 13:04:34 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 13:04:34 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 13:04:34 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for ENV... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for ENV... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 13:04:34 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 13:04:34 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 13:04:34 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 13:04:34 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for GHERKIN... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 13:04:34 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for GO... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GO... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:04:34 [INFO] ---------------------------------------------- +2021-11-19 13:04:34 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:04:34 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:04:34 [DEBUG] Loading rules for GROOVY... +2021-11-19 13:04:34 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 13:04:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:34 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 13:04:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:34 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 13:04:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:34 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 13:04:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 13:04:34 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 13:04:34 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 13:04:34 [DEBUG] Loading rules for HTML... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for HTML... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 13:04:35 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for JAVA... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JAVA... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 13:04:35 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:35 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:35 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for JSCPD... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 13:04:35 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for JSON... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JSON... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 13:04:35 [DEBUG] Loading rules for JSONC... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JSONC... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 13:04:35 [DEBUG] Loading rules for JSX... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for JSX... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:35 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:35 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 13:04:35 [DEBUG] Loading rules for KOTLIN... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 13:04:35 [DEBUG] Loading rules for LATEX... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for LATEX... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 13:04:35 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for LUA... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for LUA... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 13:04:35 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 13:04:35 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 13:04:35 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 13:04:35 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 13:04:35 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 13:04:35 [DEBUG] Loading rules for OPENAPI... +2021-11-19 13:04:35 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 13:04:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:35 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 13:04:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:35 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 13:04:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:35 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 13:04:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 13:04:35 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 13:04:36 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PERL... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PERL... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 13:04:36 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 13:04:36 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 13:04:36 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 13:04:36 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 13:04:36 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:04:36 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 13:04:36 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 13:04:36 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 13:04:36 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 13:04:36 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 13:04:36 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:36 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 13:04:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 13:04:36 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 13:04:36 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 13:04:36 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 13:04:36 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 13:04:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:36 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 13:04:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:36 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 13:04:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 13:04:37 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for R... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for R... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 13:04:37 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for RAKU... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for RAKU... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 13:04:37 [DEBUG] Loading rules for RUBY... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for RUBY... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 13:04:37 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 13:04:37 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for RUST_2015... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 13:04:37 [DEBUG] Loading rules for RUST_2018... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 13:04:37 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 13:04:37 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 13:04:37 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 13:04:37 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 13:04:37 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 13:04:37 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for STATES... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for STATES... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 13:04:37 [DEBUG] Loading rules for SQL... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SQL... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 13:04:37 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 13:04:37 [DEBUG] Loading rules for TEKTON... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 13:04:37 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 13:04:37 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 13:04:37 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 13:04:37 [DEBUG] Loading rules for TSX... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TSX... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:37 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:37 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:37 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:37 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:37 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:37 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 13:04:37 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 13:04:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:37 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 13:04:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:38 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:38 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:38 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:38 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 13:04:38 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 13:04:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:38 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 13:04:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:38 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:04:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:38 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:04:38 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:04:38 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:04:38 [DEBUG] Loading rules for XML... +2021-11-19 13:04:38 [DEBUG] Getting linter rules for XML... +2021-11-19 13:04:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:38 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 13:04:38 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 13:04:38 [DEBUG] Loading rules for YAML... +2021-11-19 13:04:38 [DEBUG] Getting linter rules for YAML... +2021-11-19 13:04:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:04:38 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 13:04:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:04:38 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 13:04:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:04:38 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 13:04:38 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 13:04:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 13:04:38 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 13:04:38 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 13:04:38 [DEBUG] ENV:[browser] +2021-11-19 13:04:38 [DEBUG] ENV:[es6] +2021-11-19 13:04:38 [DEBUG] ENV:[jest] +2021-11-19 13:04:38 [DEBUG] ENV:[browser] +2021-11-19 13:04:38 [DEBUG] ENV:[es6] +2021-11-19 13:04:38 [DEBUG] ENV:[jest] +2021-11-19 13:04:38 [DEBUG] --- Linter commands --- +2021-11-19 13:04:38 [DEBUG] ----------------------- +2021-11-19 13:04:38 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 13:04:38 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 13:04:38 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 13:04:38 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 13:04:38 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 13:04:38 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 13:04:38 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 13:04:38 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 13:04:38 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 13:04:38 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 13:04:38 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 13:04:38 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 13:04:38 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 13:04:38 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 13:04:38 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 13:04:38 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 13:04:38 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 13:04:38 [DEBUG] Linter key: R, command: lintr +2021-11-19 13:04:38 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 13:04:38 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 13:04:38 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 13:04:38 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 13:04:38 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 13:04:38 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 13:04:38 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 13:04:38 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:04:38 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 13:04:38 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 13:04:38 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 13:04:38 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 13:04:38 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 13:04:38 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 13:04:38 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 13:04:38 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 13:04:38 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 13:04:38 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 13:04:38 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 13:04:38 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 13:04:38 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 13:04:38 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 13:04:38 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 13:04:38 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 13:04:38 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 13:04:38 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 13:04:38 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 13:04:38 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 13:04:38 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 13:04:38 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 13:04:38 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 13:04:38 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 13:04:38 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 13:04:38 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 13:04:38 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 13:04:38 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 13:04:38 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 13:04:38 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 13:04:38 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 13:04:38 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 13:04:38 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 13:04:38 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 13:04:38 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 13:04:38 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 13:04:38 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 13:04:39 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 13:04:39 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 13:04:39 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 13:04:39 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 13:04:39 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 13:04:39 [DEBUG] --------------------------------------------- +2021-11-19 13:04:39 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 13:04:39 [DEBUG] Building file list... +2021-11-19 13:04:39 [DEBUG] Validate all code base: true... +2021-11-19 13:04:39 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 13:04:39 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 13:04:39 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 13:04:39 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 13:04:39 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 13:04:39 [DEBUG] ---------------------------------------------- +2021-11-19 13:04:39 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 13:04:39 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:04:39 [DEBUG] Loading the files list that Git ignores... +2021-11-19 13:04:40 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 13:04:40 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 13:04:40 [DEBUG] ----------------------- +2021-11-19 13:04:40 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 13:04:40 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 13:04:40 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 13:04:40 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 13:04:40 [DEBUG] --------------------------------------------- +2021-11-19 13:04:40 [INFO] --------------------------------- +2021-11-19 13:04:40 [INFO] ------ File list to check: ------ +2021-11-19 13:04:40 [INFO] --------------------------------- +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 13:04:40 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 13:04:40 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 13:04:40 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 13:04:40 [DEBUG]  +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 13:04:40 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 13:04:40 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 13:04:40 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 13:04:40 [DEBUG]  +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 13:04:40 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 13:04:40 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 13:04:40 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 13:04:40 [DEBUG]  +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 13:04:40 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 13:04:40 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 13:04:40 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 13:04:40 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 13:04:40 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 13:04:40 [DEBUG]  +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 13:04:40 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 13:04:40 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 13:04:40 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 13:04:40 [DEBUG]  +2021-11-19 13:04:40 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 13:04:41 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 13:04:41 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 13:04:41 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 13:04:41 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:41 [DEBUG]  +2021-11-19 13:04:41 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 13:04:41 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 13:04:41 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 13:04:42 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 13:04:42 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 13:04:42 [DEBUG]  +2021-11-19 13:04:42 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 13:04:43 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 13:04:43 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 13:04:43 [DEBUG]  +2021-11-19 13:04:43 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:44 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 13:04:44 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 13:04:44 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 13:04:44 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:45 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 13:04:45 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 13:04:45 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 13:04:45 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 13:04:46 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 13:04:46 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 13:04:46 [DEBUG]  +2021-11-19 13:04:46 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 13:04:47 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 13:04:47 [DEBUG]  +2021-11-19 13:04:47 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 13:04:47 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 13:04:48 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 13:04:48 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 13:04:48 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 13:04:48 [DEBUG]  +2021-11-19 13:04:48 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 13:04:49 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 13:04:49 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 13:04:49 [DEBUG]  +2021-11-19 13:04:49 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 13:04:49 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 13:04:49 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 13:04:49 [DEBUG]  +2021-11-19 13:04:49 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:04:49 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 13:04:49 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:04:49 [DEBUG]  +2021-11-19 13:04:49 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 13:04:49 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 13:04:49 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 13:04:49 [DEBUG]  +2021-11-19 13:04:49 [INFO] ---------------------------------------------- +2021-11-19 13:04:49 [INFO] Successfully gathered list of files... +2021-11-19 13:04:49 [DEBUG] --- ENV (before running linters) --- +2021-11-19 13:04:49 [DEBUG] ------------------------------------ +2021-11-19 13:04:49 [DEBUG] ENV: +2021-11-19 13:04:49 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=234ba3a1035e +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.m0rV6nEnRN +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 13:04:49 [DEBUG] ------------------------------------ +2021-11-19 13:04:49 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the ARM language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the BASH language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:04:49 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the CPP language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:49 [DEBUG] Running linter for the CSHARP language... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 13:04:49 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 13:04:49 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 13:04:49 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 13:04:49 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 13:04:49 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 13:04:49 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 13:04:49 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:50 [DEBUG] Running linter for the CSS language... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 13:04:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 13:04:50 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 13:04:50 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 13:04:50 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 13:04:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:50 [DEBUG] Running linter for the DART language... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 13:04:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 13:04:50 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 13:04:50 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 13:04:50 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 13:04:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:50 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 13:04:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 13:04:50 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 13:04:50 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 13:04:50 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 13:04:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:50 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 13:04:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 13:04:50 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 13:04:50 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 13:04:50 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 13:04:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:04:50 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 13:04:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:04:50 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 13:04:50 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 13:04:50 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 13:04:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 13:04:50 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:04:50 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 13:04:50 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:04:50 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:04:50 [INFO]  +2021-11-19 13:04:50 [INFO] ---------------------------------------------- +2021-11-19 13:04:50 [INFO] ---------------------------------------------- +2021-11-19 13:04:50 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:04:50 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 13:04:50 [INFO] ---------------------------------------------- +2021-11-19 13:04:50 [INFO] ---------------------------------------------- +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 13:04:50 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:04:50 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:04:50 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:04:50 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 13:04:50 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:04:50 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:04:50 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:50 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:50 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 13:04:50 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:50 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:50 [INFO] --------------------------- +2021-11-19 13:04:50 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 13:04:51 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 13:04:51 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:04:51 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 13:04:51 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 13:04:51 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 13:04:51 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 13:04:51 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 13:04:51 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 13:04:51 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 13:04:51 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 13:04:51 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 13:04:51 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:51 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:51 [INFO] --------------------------- +2021-11-19 13:04:51 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 13:04:51 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:51 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 13:04:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 13:04:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:52 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:52 [INFO] --------------------------- +2021-11-19 13:04:52 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 13:04:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 13:04:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 13:04:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 13:04:53 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 13:04:53 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 13:04:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 13:04:53 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 13:04:53 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 13:04:53 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 13:04:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:53 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 13:04:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:53 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 13:04:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:53 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:53 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 13:04:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 13:04:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 13:04:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 13:04:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 13:04:54 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 13:04:54 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 13:04:54 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 13:04:54 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 13:04:54 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 13:04:54 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 13:04:54 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:54 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 13:04:54 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:54 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:54 [INFO] --------------------------- +2021-11-19 13:04:54 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 13:04:54 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 13:04:55 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 13:04:55 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 13:04:55 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 13:04:55 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 13:04:55 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 13:04:55 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 13:04:55 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 13:04:55 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 13:04:55 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 13:04:55 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 13:04:55 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:55 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:55 [INFO] --------------------------- +2021-11-19 13:04:55 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 13:04:55 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:55 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 13:04:56 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 13:04:56 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 13:04:56 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 13:04:56 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 13:04:56 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 13:04:56 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 13:04:56 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 13:04:56 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 13:04:56 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 13:04:56 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 13:04:56 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 13:04:56 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:56 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:56 [INFO] --------------------------- +2021-11-19 13:04:56 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 13:04:57 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 13:04:57 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 13:04:57 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 13:04:57 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 13:04:57 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 13:04:57 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 13:04:57 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 13:04:57 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 13:04:57 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 13:04:57 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 13:04:57 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 13:04:57 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:57 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:57 [INFO] --------------------------- +2021-11-19 13:04:57 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 13:04:57 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 13:04:58 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 13:04:58 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 13:04:58 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 13:04:58 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 13:04:58 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 13:04:58 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 13:04:58 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 13:04:58 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 13:04:58 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/option.go] +2021-11-19 13:04:58 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 13:04:58 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 13:04:58 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 13:04:58 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:58 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:58 [INFO] --------------------------- +2021-11-19 13:04:58 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 13:04:58 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:58 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 13:04:59 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 13:04:59 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 13:04:59 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/server.go] +2021-11-19 13:04:59 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 13:04:59 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/service.go] +2021-11-19 13:04:59 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 13:04:59 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 13:04:59 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 13:04:59 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 13:04:59 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:04:59 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:04:59 [INFO] --------------------------- +2021-11-19 13:04:59 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 13:04:59 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 13:04:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:04:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 13:04:59 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 13:05:00 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 13:05:00 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 13:05:00 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 13:05:00 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 13:05:00 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 13:05:00 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 13:05:00 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 13:05:00 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 13:05:00 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 13:05:00 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:00 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:00 [INFO] --------------------------- +2021-11-19 13:05:00 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 13:05:00 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 13:05:00 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 13:05:01 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 13:05:01 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Running linter for the ENV language... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 13:05:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 13:05:01 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 13:05:01 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 13:05:01 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 13:05:01 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:01 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 13:05:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 13:05:01 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:01 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 13:05:01 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:01 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:05:01 [INFO]  +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:01 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:05:01 [DEBUG] Found errors. Error code: 1, File type: GITHUB_ACTIONS, Error on missing exec bit: false +2021-11-19 13:05:01 [ERROR] Found errors in [actionlint] linter! +2021-11-19 13:05:01 [ERROR] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:47: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:54: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:34:26: property "matrix" is not defined in object type {go-matrix: {outputs: {matrix: string}; result: string}} [expression] +------ +2021-11-19 13:05:01 [DEBUG] Error code: 1. Command output: +------ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2116:style:3:47: Useless echo? Instead of 'cmd $(echo foo)', just use 'cmd foo' [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:23:9: shellcheck reported issue in this script: SC2086:info:3:54: Double quote to prevent globbing and word splitting [shellcheck] + | +23 | run: | + | ^~~~ +.github/workflows/checks.yml:34:26: property "matrix" is not defined in object type {go-matrix: {outputs: {matrix: string}; result: string}} [expression] +------ +2021-11-19 13:05:01 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 13:05:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 13:05:01 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 13:05:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 13:05:01 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:05:01 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 13:05:01 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:05:01 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:05:01 [INFO]  +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:05:01 [INFO] Linting [GITLEAKS] files... +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [INFO] ---------------------------------------------- +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 13:05:01 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:05:01 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:05:01 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:05:01 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 13:05:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:01 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 13:05:01 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:01 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:01 [INFO] --------------------------- +2021-11-19 13:05:01 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 13:05:02 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:05:02 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:05:02 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 13:05:02 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 13:05:02 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:05:02 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 13:05:02 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 13:05:02 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 13:05:02 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 13:05:02 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 13:05:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:02 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:02 [INFO] --------------------------- +2021-11-19 13:05:02 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 13:05:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:02 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 13:05:02 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 13:05:03 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 13:05:03 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 13:05:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:03 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:03 [INFO] --------------------------- +2021-11-19 13:05:03 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 13:05:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 13:05:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 13:05:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 13:05:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 13:05:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 13:05:04 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 13:05:04 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 13:05:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 13:05:04 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 13:05:04 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 13:05:04 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 13:05:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 13:05:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 13:05:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 13:05:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:04 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:04 [INFO] --------------------------- +2021-11-19 13:05:04 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 13:05:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 13:05:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 13:05:05 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 13:05:05 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 13:05:05 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 13:05:05 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 13:05:05 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 13:05:05 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 13:05:05 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 13:05:05 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 13:05:05 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 13:05:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:05 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 13:05:05 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:05 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:05 [INFO] --------------------------- +2021-11-19 13:05:05 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 13:05:06 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 13:05:06 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 13:05:06 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 13:05:06 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 13:05:06 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 13:05:06 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 13:05:06 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 13:05:06 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 13:05:06 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 13:05:06 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 13:05:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 13:05:06 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:06 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:06 [INFO] --------------------------- +2021-11-19 13:05:06 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 13:05:07 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 13:05:07 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 13:05:07 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 13:05:07 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 13:05:07 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 13:05:07 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 13:05:07 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 13:05:07 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 13:05:07 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 13:05:07 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 13:05:07 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 13:05:07 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:07 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:07 [INFO] --------------------------- +2021-11-19 13:05:07 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 13:05:07 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:05:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 13:05:08 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 13:05:08 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 13:05:08 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 13:05:08 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 13:05:08 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 13:05:08 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 13:05:08 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 13:05:08 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 13:05:08 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 13:05:08 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 13:05:08 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 13:05:08 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:08 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 13:05:08 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 13:05:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 13:05:08 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:08 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:08 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 13:05:09 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 13:05:09 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 13:05:09 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 13:05:09 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 13:05:09 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 13:05:09 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 13:05:09 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 13:05:09 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/option.go] +2021-11-19 13:05:09 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 13:05:09 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 13:05:09 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 13:05:09 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 13:05:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 13:05:09 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:09 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:09 [INFO] --------------------------- +2021-11-19 13:05:09 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 13:05:10 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 13:05:10 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 13:05:10 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/server.go] +2021-11-19 13:05:10 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 13:05:10 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/service.go] +2021-11-19 13:05:10 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 13:05:10 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 13:05:10 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 13:05:10 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 13:05:10 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 13:05:10 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:10 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 13:05:10 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:10 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:10 [INFO] --------------------------- +2021-11-19 13:05:10 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 13:05:17 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 13:05:17 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 13:05:17 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 13:05:17 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 13:05:17 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 13:05:17 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 13:05:17 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 13:05:17 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 13:05:17 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 13:05:17 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:17 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 13:05:17 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:17 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:17 [INFO] --------------------------- +2021-11-19 13:05:17 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 13:05:18 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 13:05:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:18 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 13:05:18 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:18 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:18 [INFO] --------------------------- +2021-11-19 13:05:18 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 13:05:18 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 13:05:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:18 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 13:05:18 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:18 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:18 [INFO] --------------------------- +2021-11-19 13:05:18 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 13:05:18 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 13:05:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:18 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 13:05:18 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:18 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:18 [INFO] --------------------------- +2021-11-19 13:05:18 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 13:05:18 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:05:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:18 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 13:05:18 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:18 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:05:18 [INFO] --------------------------- +2021-11-19 13:05:18 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 13:05:18 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 13:05:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:18 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the GO language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:05:18 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the GROOVY language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the HTML language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JAVA language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JSCPD language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:05:18 [DEBUG] Running linter for the JSON language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JSONC language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:18 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 13:05:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 13:05:18 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 13:05:18 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:18 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 13:05:18 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:18 [DEBUG] Running linter for the JSX language... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 13:05:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 13:05:19 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:19 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 13:05:19 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:19 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 13:05:19 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:19 [DEBUG] Running linter for the LATEX language... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 13:05:19 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:19 [DEBUG] Running linter for the LUA language... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 13:05:19 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:19 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 13:05:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 13:05:19 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 13:05:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 13:05:19 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 13:05:19 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 13:05:19 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 13:05:19 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:05:19 [INFO]  +2021-11-19 13:05:19 [INFO] ---------------------------------------------- +2021-11-19 13:05:19 [INFO] ---------------------------------------------- +2021-11-19 13:05:19 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 13:05:19 [INFO] Linting [MARKDOWN] files... +2021-11-19 13:05:19 [INFO] ---------------------------------------------- +2021-11-19 13:05:19 [INFO] ---------------------------------------------- +2021-11-19 13:05:19 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:05:19 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:19 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 13:05:19 [INFO] --------------------------- +2021-11-19 13:05:19 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:05:20 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 13:05:20 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:20 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 13:05:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 13:05:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:20 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 13:05:20 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 13:05:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 13:05:20 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 13:05:20 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 13:05:20 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 13:05:20 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:05:20 [INFO]  +2021-11-19 13:05:20 [INFO] ---------------------------------------------- +2021-11-19 13:05:20 [INFO] ---------------------------------------------- +2021-11-19 13:05:20 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 13:05:20 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 13:05:20 [INFO] ---------------------------------------------- +2021-11-19 13:05:20 [INFO] ---------------------------------------------- +2021-11-19 13:05:20 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:05:20 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:20 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 13:05:20 [INFO] --------------------------- +2021-11-19 13:05:20 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:05:21 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 13:05:21 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:05:21 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 13:05:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 13:05:21 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 13:05:21 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 13:05:21 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 13:05:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:21 [DEBUG] Running linter for the PERL language... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 13:05:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 13:05:21 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 13:05:21 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 13:05:21 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 13:05:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:21 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 13:05:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 13:05:21 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 13:05:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 13:05:21 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 13:05:21 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 13:05:21 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 13:05:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the R language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the RAKU language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the RUBY language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 13:05:22 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 13:05:22 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 13:05:22 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 13:05:22 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 13:05:22 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 13:05:22 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:22 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 13:05:22 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:05:23 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the STATES language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the SQL language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TEKTON language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TSX language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the XML language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 13:05:23 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:05:23 [DEBUG] Running linter for the YAML language... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 13:05:23 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 13:05:23 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 13:05:23 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 13:05:23 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:05:23 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 13:05:23 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:05:23 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:05:23 [INFO]  +2021-11-19 13:05:23 [INFO] ---------------------------------------------- +2021-11-19 13:05:23 [INFO] ---------------------------------------------- +2021-11-19 13:05:23 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:05:23 [INFO] Linting [YAML] files... +2021-11-19 13:05:23 [INFO] ---------------------------------------------- +2021-11-19 13:05:23 [INFO] ---------------------------------------------- +2021-11-19 13:05:23 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:05:23 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:23 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:05:23 [INFO] --------------------------- +2021-11-19 13:05:23 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:05:24 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 13:05:24 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:05:24 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:05:24 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:24 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:05:24 [INFO] --------------------------- +2021-11-19 13:05:24 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:05:24 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 13:05:24 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:05:24 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:05:24 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:24 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:05:24 [INFO] --------------------------- +2021-11-19 13:05:24 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:05:24 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 13:05:24 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:62:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 13:05:24 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:05:24 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:24 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:05:24 [INFO] --------------------------- +2021-11-19 13:05:24 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:05:24 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 13:05:24 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:05:24 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:05:24 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:05:24 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:05:24 [INFO] --------------------------- +2021-11-19 13:05:24 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:05:25 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 13:05:25 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:05:25 [INFO] ---------------------------------------------- +2021-11-19 13:05:25 [INFO] ---------------------------------------------- +2021-11-19 13:05:25 [INFO] The script has completed +2021-11-19 13:05:25 [INFO] ---------------------------------------------- +2021-11-19 13:05:25 [INFO] ---------------------------------------------- +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 13:05:25 [ERROR] ERRORS FOUND in GITHUB_ACTIONS:[1] +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status error +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 13:05:25 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 13:05:25 [FATAL] Exiting with errors found! +super-linter Log +2021-11-19 13:06:31 [DEBUG] Setting FILE_ARRAY_ANSIBLE variable... +2021-11-19 13:06:31 [DEBUG] Setting FILE_ARRAY_ARM variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_BASH variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_BASH_EXEC variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CLANG_FORMAT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CLOUDFORMATION variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CLOJURE variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_COFFEESCRIPT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CPP variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CSHARP variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_CSS variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_DART variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_DOCKERFILE variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_DOCKERFILE_HADOLINT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_EDITORCONFIG variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_ENV variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GITHUB_ACTIONS variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GITLEAKS variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GHERKIN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GO variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GOOGLE_JAVA_FORMAT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_GROOVY variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_HTML variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JAVA variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_ES variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JAVASCRIPT_STANDARD variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JSCPD variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JSON variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JSONC variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_JSX variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_KUBERNETES_KUBEVAL variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_KOTLIN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_LATEX variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_LUA variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_MARKDOWN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_NATURAL_LANGUAGE variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_OPENAPI variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PERL variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PHP_BUILTIN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PHP_PHPCS variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PHP_PHPSTAN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PHP_PSALM variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_POWERSHELL variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PROTOBUF variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PYTHON_BLACK variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PYTHON_PYLINT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PYTHON_FLAKE8 variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PYTHON_ISORT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_PYTHON_MYPY variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_R variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_RAKU variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_RUBY variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_RUST_2015 variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_RUST_2018 variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_RUST_CLIPPY variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SCALAFMT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SHELL_SHFMT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_LINT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_STATES variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SQL variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_SQLFLUFF variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TEKTON variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TFLINT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TERRAFORM_TERRASCAN variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TERRAGRUNT variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TSX variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_ES variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_TYPESCRIPT_STANDARD variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_XML variable... +2021-11-19 13:06:32 [DEBUG] Setting FILE_ARRAY_YAML variable... +2021-11-19 13:06:32 [INFO] --------------------------------------------- +2021-11-19 13:06:32 [INFO] --- GitHub Actions Multi Language Linter ---- +2021-11-19 13:06:32 [INFO] - Image Creation Date:[] +2021-11-19 13:06:32 [INFO] - Image Revision:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 13:06:32 [INFO] - Image Version:[563be7dc5568017515b9e700329e9c6d3862f2b7] +2021-11-19 13:06:32 [INFO] --------------------------------------------- +2021-11-19 13:06:32 [INFO] --------------------------------------------- +2021-11-19 13:06:32 [INFO] The Super-Linter source code can be found at: +2021-11-19 13:06:32 [INFO] - https://github.com/github/super-linter +2021-11-19 13:06:32 [INFO] --------------------------------------------- +2021-11-19 13:06:32 [DEBUG] --------------------------------------------- +2021-11-19 13:06:32 [DEBUG] Linter Version Info: +2021-11-19 13:06:32 [DEBUG] chktex: chktex: WARNING -- Could not find global resource file. +ChkTeX v1.7.6 - Copyright 1995-96 Jens T. Berger Thielemann. +Compiled with POSIX extended regex support. +rubocop: 1.13.0 +perl: +This is perl 5, version 32, subversion 1 (v5.32.1) built for x86_64-linux-thread-multi + +Copyright 1987-2021, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. +xmllint: xmllint: using libxml version 20912 + compiled with: Threads Tree Output Push Reader Patterns Writer SAXv1 FTP HTTP DTDValid HTML Legacy C14N Catalog XPath XPointer XInclude Iconv ISO8859X Unicode Regexps Automata Schemas Schematron Modules Debug Zlib Lzma +ansible-lint: ansible-lint 5.2.1 using ansible 2.12.0 +eslint: v7.32.0 +markdownlint: 0.29.0 +snakefmt: snakefmt, version 0.4.2 +cpplint: Cpplint fork (https://github.com/cpplint/cpplint) +cpplint 1.5.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +editorconfig-checker: +gitleaks: --version not supported +phpstan: PHPStan - PHP Static Analysis Tool 1.1.2 +dotenv-linter: dotenv-linter 3.1.1 +asl-validator: 1.10.0 +actionlint: 1.6.8 +installed by downloading from release page +built with go1.17.3 compiler for linux/amd64 +tekton-lint: Version: 0.6.0 +terrascan: version: v1.12.0 +clippy: clippy 0.1.56 (59eed8a 2021-11-01) +R: R version 4.1.0 (2021-05-18) -- "Camp Pontanezen" +Copyright (C) 2021 The R Foundation for Statistical Computing +Platform: x86_64-pc-linux-musl (64-bit) + +R is free software and comes with ABSOLUTELY NO WARRANTY. +You are welcome to redistribute it under the terms of the +GNU General Public License versions 2 or 3. +For more information about these matters see +https://www.gnu.org/licenses/. +shellcheck: ShellCheck - shell script analysis tool +version: 0.8.0 +license: GNU General Public License, version 3 +website: https://www.shellcheck.net +jscpd: 3.4.2 +black: black, version 21.10b0 +php: PHP 7.4.25 (cli) (built: Oct 21 2021 23:28:05) ( NTS ) +Copyright (c) The PHP Group +Zend Engine v3.4.0, Copyright (c) Zend Technologies +textlint: v12.0.2 +npm-groovy-lint: GroovyLint: Started CodeNarc Server +GroovyLint: Successfully processed CodeNarc: +CodeNarc version 2.2.0 + +npm-groovy-lint version 9.0.0 + +Embeds: +CodeNarc version 2.2.0 +- Groovy version 3.0.9 (superlite) +golangci-lint: golangci-lint has version v1.43.0 built from 861262b7 on 2021-11-03T12:17:18Z +gherkin-lint: --version not supported +eslint: v7.32.0 +scalafmt: scalafmt 3.1.0 +stylelint: 14.1.0 +sqlfluff: sqlfluff, version 0.8.1 +bash-exec: --version not supported +google-java-format: google-java-format: Version 1.12.0 +phpcs: PHP_CodeSniffer version 3.6.1 (stable) by Squiz (http://www.squiz.net) +terragrunt: terragrunt version v0.35.10 +psalm: Psalm 4.x-dev@ +pylint: pylint 2.11.1 +astroid 2.8.5 +Python 3.10.0 (default, Nov 13 2021, 03:23:03) [GCC 10.3.1 20210424] +shfmt: v3.4.0 +snakemake: 6.10.0 +arm-ttk: ModuleVersion = 0.3 +pwsh: PowerShell 7.2.0 +mypy: mypy 0.910 +eslint: v7.32.0 +coffeelint: 5.2.0 +tflint: TFLint version 0.33.1 +cfn-lint: cfn-lint 0.56.0 +flake8: 4.0.1 (mccabe: 0.6.1, pycodestyle: 2.8.0, pyflakes: 2.4.0) CPython 3.10.0 on +Linux +spectral: 6.1.0 +clj-kondo: clj-kondo v2021.10.19 +eslint: v7.32.0 +standard: 16.0.4 +eslint: v7.32.0 +protolint: protolint version 0.35.2(6485531) +raku: Welcome to Rakudo(tm) v2021.05. +Implementing the Raku(tm) programming language v6.d. +Built on MoarVM version 2021.05. +hadolint: Haskell Dockerfile Linter v2.8.0-0-g398770f-dirty +checkstyle: Checkstyle version: 9.1 +clang-format: clang-format version 12.0.1 (https://github.com/llvm/llvm-project.git fed41342a82f5a3a9201819a82bf7a48313e296b) +ktlint: 0.43.0 +yamllint: yamllint 1.26.3 +dart: Dart VM version: 2.8.4 (stable) (Wed Jun 3 12:26:04 2020 +0200) on "linux_x64" +isort: + _ _ + (_) ___ ___ _ __| |_ + | |/ _/ / _ \/ '__ _/ + | |\__ \/\_\/| | | |_ + |_|\___/\___/\_/ \_/ + + isort your imports, so you don't have to. + + VERSION 5.10.1 +dotnet-format: 5.0.211103+b95e1694941ca2595941f1c9cd0d9727b6c53d43 +dockerfilelint: 1.8.0 +eslint: v7.32.0 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +htmlhint: 0.16.1 +rustfmt: rustfmt 1.4.37-stable (59eed8a 2021-11-01) +sql-lint: 0.0.19 +kubeval: Version: dev +Commit: none +Date: unknown +lua: Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio +standard: 16.0.4 +2021-11-19 13:06:32 [DEBUG] --------------------------------------------- +2021-11-19 13:06:32 [INFO] -------------------------------------------- +2021-11-19 13:06:32 [INFO] Gathering GitHub information... +2021-11-19 13:06:32 [INFO] NOTE: ENV VAR [RUN_LOCAL] has been set to:[true] +2021-11-19 13:06:32 [INFO] bypassing GitHub Actions variables... +2021-11-19 13:06:32 [INFO] Linting all files in mapped directory:[/tmp/lint] +2021-11-19 13:06:32 [INFO] Successfully found:[GITHUB_TOKEN] +2021-11-19 13:06:32 [INFO] -------------------------------------------- +2021-11-19 13:06:32 [INFO] Gathering user validation information... +2021-11-19 13:06:32 [DEBUG] Defining variables for ANSIBLE linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_ANSIBLE variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_ANSIBLE variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for ARM linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_ARM variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_ARM variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for BASH_EXEC linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_BASH_EXEC variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_BASH_EXEC variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CLANG_FORMAT linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CLANG_FORMAT variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CLANG_FORMAT variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CLOUDFORMATION linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CLOUDFORMATION variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CLOUDFORMATION variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CLOJURE linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CLOJURE variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CLOJURE variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for COFFEESCRIPT linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_COFFEESCRIPT variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_COFFEESCRIPT variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CPP linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CPP variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CPP variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CSHARP linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CSHARP variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CSHARP variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for CSS linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_CSS variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_CSS variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for DART linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_DART variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_DART variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for DOCKERFILE linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for DOCKERFILE_HADOLINT linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_DOCKERFILE_HADOLINT variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_DOCKERFILE_HADOLINT variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for EDITORCONFIG linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_EDITORCONFIG variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_EDITORCONFIG variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for ENV linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_ENV variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_ENV variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for GITHUB_ACTIONS linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_GITHUB_ACTIONS variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_GITHUB_ACTIONS variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for GITLEAKS linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_GITLEAKS variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_GITLEAKS variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for GHERKIN linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_GHERKIN variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_GHERKIN variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for GOOGLE_JAVA_FORMAT linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_GOOGLE_JAVA_FORMAT variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for GROOVY linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_GROOVY variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_GROOVY variable... +2021-11-19 13:06:32 [DEBUG] Defining variables for HTML linter... +2021-11-19 13:06:32 [DEBUG] Setting ERRORS_FOUND_HTML variable value to 0... +2021-11-19 13:06:32 [DEBUG] Exporting ERRORS_FOUND_HTML variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JAVA linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JAVA variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JAVA variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JAVASCRIPT_ES linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_ES variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_ES variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JAVASCRIPT_STANDARD linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JAVASCRIPT_STANDARD variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JAVASCRIPT_STANDARD variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JSON linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JSON variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JSON variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JSONC linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JSONC variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JSONC variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for JSX linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_JSX variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_JSX variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for KUBERNETES_KUBEVAL linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_KUBERNETES_KUBEVAL variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_KUBERNETES_KUBEVAL variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for KOTLIN linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_KOTLIN variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_KOTLIN variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for LATEX linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_LATEX variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_LATEX variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for LUA linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_LUA variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_LUA variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for MARKDOWN linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_MARKDOWN variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_MARKDOWN variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for NATURAL_LANGUAGE linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_NATURAL_LANGUAGE variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_NATURAL_LANGUAGE variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for OPENAPI linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_OPENAPI variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_OPENAPI variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PERL linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PERL variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PERL variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PHP_BUILTIN linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PHP_BUILTIN variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PHP_BUILTIN variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PHP_PHPCS linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PHP_PHPCS variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPCS variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PHP_PHPSTAN linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PHP_PHPSTAN variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PHP_PHPSTAN variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PHP_PSALM linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PHP_PSALM variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PHP_PSALM variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for POWERSHELL linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_POWERSHELL variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_POWERSHELL variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PROTOBUF linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PROTOBUF variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PROTOBUF variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PYTHON_BLACK linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PYTHON_BLACK variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PYTHON_BLACK variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PYTHON_PYLINT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PYTHON_PYLINT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PYTHON_PYLINT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PYTHON_FLAKE8 linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PYTHON_FLAKE8 variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PYTHON_FLAKE8 variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PYTHON_ISORT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PYTHON_ISORT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PYTHON_ISORT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for PYTHON_MYPY linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_PYTHON_MYPY variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_PYTHON_MYPY variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for R linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_R variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_R variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for RAKU linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_RAKU variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_RAKU variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for RUBY linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_RUBY variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_RUBY variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for RUST_2015 linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_RUST_2015 variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_RUST_2015 variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for RUST_2018 linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_RUST_2018 variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_RUST_2018 variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for RUST_CLIPPY linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_RUST_CLIPPY variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_RUST_CLIPPY variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for SCALAFMT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_SCALAFMT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_SCALAFMT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for SNAKEMAKE_LINT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_LINT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_LINT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for SNAKEMAKE_SNAKEFMT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_SNAKEMAKE_SNAKEFMT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for STATES linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_STATES variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_STATES variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for SQL linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_SQL variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_SQL variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for SQLFLUFF linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_SQLFLUFF variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_SQLFLUFF variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TEKTON linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TEKTON variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TEKTON variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TERRAFORM_TFLINT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TFLINT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TFLINT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TERRAFORM_TERRASCAN linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TERRAFORM_TERRASCAN variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TERRAFORM_TERRASCAN variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TERRAGRUNT linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TERRAGRUNT variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TERRAGRUNT variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TSX linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TSX variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TSX variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TYPESCRIPT_ES linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_ES variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_ES variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for TYPESCRIPT_STANDARD linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_TYPESCRIPT_STANDARD variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_TYPESCRIPT_STANDARD variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for XML linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_XML variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_XML variable... +2021-11-19 13:06:33 [DEBUG] Defining variables for YAML linter... +2021-11-19 13:06:33 [DEBUG] Setting ERRORS_FOUND_YAML variable value to 0... +2021-11-19 13:06:33 [DEBUG] Exporting ERRORS_FOUND_YAML variable... +2021-11-19 13:06:33 [DEBUG] Setting Ansible directory to the default: /tmp/lint/ansible +2021-11-19 13:06:33 [DEBUG] Setting Ansible directory to: /tmp/lint/ansible +2021-11-19 13:06:33 [DEBUG] - Validating [ANSIBLE] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [ARM] files in code base... +2021-11-19 13:06:33 [DEBUG] - Excluding [BASH] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [BASH_EXEC] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CLANG_FORMAT] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CLOUDFORMATION] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CLOJURE] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [COFFEESCRIPT] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CPP] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CSHARP] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [CSS] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [DART] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [DOCKERFILE] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [DOCKERFILE_HADOLINT] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [EDITORCONFIG] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [ENV] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [GITHUB_ACTIONS] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [GITLEAKS] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [GHERKIN] files in code base... +2021-11-19 13:06:33 [DEBUG] - Excluding [GO] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [GOOGLE_JAVA_FORMAT] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [GROOVY] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [HTML] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [JAVA] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [JAVASCRIPT_ES] files in code base... +2021-11-19 13:06:33 [DEBUG] - Validating [JAVASCRIPT_STANDARD] files in code base... +2021-11-19 13:06:34 [DEBUG] - Excluding [JSCPD] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [JSON] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [JSONC] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [JSX] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [KUBERNETES_KUBEVAL] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [KOTLIN] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [LATEX] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [LUA] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [MARKDOWN] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [NATURAL_LANGUAGE] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [OPENAPI] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PERL] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PHP_BUILTIN] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PHP_PHPCS] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PHP_PHPSTAN] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PHP_PSALM] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [POWERSHELL] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PROTOBUF] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PYTHON_BLACK] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PYTHON_PYLINT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PYTHON_FLAKE8] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PYTHON_ISORT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [PYTHON_MYPY] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [R] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [RAKU] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [RUBY] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [RUST_2015] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [RUST_2018] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [RUST_CLIPPY] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [SCALAFMT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Excluding [SHELL_SHFMT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [SNAKEMAKE_LINT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [SNAKEMAKE_SNAKEFMT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [STATES] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [SQL] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [SQLFLUFF] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TEKTON] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TERRAFORM_TFLINT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TERRAFORM_TERRASCAN] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TERRAGRUNT] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TSX] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TYPESCRIPT_ES] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [TYPESCRIPT_STANDARD] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [XML] files in code base... +2021-11-19 13:06:34 [DEBUG] - Validating [YAML] files in code base... +2021-11-19 13:06:34 [DEBUG] --- DEBUG INFO --- +2021-11-19 13:06:34 [DEBUG] --------------------------------------------- +2021-11-19 13:06:34 [DEBUG] Runner:[root] +2021-11-19 13:06:34 [DEBUG] ENV: +2021-11-19 13:06:34 [DEBUG] ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +HOME=/root +HOSTNAME=b61f8c8d9ab8 +IGNORE_GITIGNORED_FILES=true +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.U3ZiHdt1Aa +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +NC= +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PWD=/ +RUN_LOCAL=true +SHLVL=0 +TERM=xterm +TEST_CASE_FOLDER=.automation/test +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +_=/bin/printenv +2021-11-19 13:06:34 [DEBUG] --------------------------------------------- +2021-11-19 13:06:34 [DEBUG] Loading rules for ANSIBLE... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for ANSIBLE... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: ANSIBLE_FILE_NAME, language linter rules: ANSIBLE_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:34 [DEBUG] ANSIBLE language rule file (.ansible-lint.yml) has .ansible-lint name and yml extension +2021-11-19 13:06:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:34 [DEBUG] Checking if the user-provided:[.ansible-lint.yml] and exists at:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml]. +2021-11-19 13:06:34 [DEBUG] ANSIBLE language rule file has a secondary rules file name to check (.ansible-lint.yaml). Path:[/tmp/lint/.github/linters/.ansible-lint.yml] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ansible-lint.yml], nor the file:[/tmp/lint/.github/linters/.ansible-lint.yml], using Default rules at:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 13:06:34 [DEBUG] -> Language rules file variable (ANSIBLE_LINTER_RULES) value is:[/action/lib/.automation/.ansible-lint.yml] +2021-11-19 13:06:34 [DEBUG] -> ANSIBLE_LINTER_RULES rules file (/action/lib/.automation/.ansible-lint.yml) exists. +2021-11-19 13:06:34 [DEBUG] Loading rules for ARM... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for ARM... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: ARM_FILE_NAME, language linter rules: ARM_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:34 [DEBUG] ARM language rule file (.arm-ttk.psd1) has .arm-ttk name and psd1 extension +2021-11-19 13:06:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:34 [DEBUG] Checking if the user-provided:[.arm-ttk.psd1] and exists at:[/tmp/lint/.github/linters/.arm-ttk.psd1] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1]. +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.arm-ttk.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 13:06:34 [DEBUG] -> Language rules file variable (ARM_LINTER_RULES) value is:[/action/lib/.automation/.arm-ttk.psd1] +2021-11-19 13:06:34 [DEBUG] -> ARM_LINTER_RULES rules file (/action/lib/.automation/.arm-ttk.psd1) exists. +2021-11-19 13:06:34 [DEBUG] Loading rules for BASH... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for BASH... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: BASH_FILE_NAME, language linter rules: BASH_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] BASH_FILE_NAME is not set. Skipping loading rules for BASH... +2021-11-19 13:06:34 [DEBUG] Loading rules for BASH_EXEC... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for BASH_EXEC... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: BASH_EXEC_FILE_NAME, language linter rules: BASH_EXEC_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] BASH_EXEC_FILE_NAME is not set. Skipping loading rules for BASH_EXEC... +2021-11-19 13:06:34 [DEBUG] Loading rules for CLANG_FORMAT... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for CLANG_FORMAT... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: CLANG_FORMAT_FILE_NAME, language linter rules: CLANG_FORMAT_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] CLANG_FORMAT_FILE_NAME is not set. Skipping loading rules for CLANG_FORMAT... +2021-11-19 13:06:34 [DEBUG] Loading rules for CLOUDFORMATION... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for CLOUDFORMATION... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: CLOUDFORMATION_FILE_NAME, language linter rules: CLOUDFORMATION_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:34 [DEBUG] CLOUDFORMATION language rule file (.cfnlintrc.yml) has .cfnlintrc name and yml extension +2021-11-19 13:06:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:34 [DEBUG] Checking if the user-provided:[.cfnlintrc.yml] and exists at:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml]. +2021-11-19 13:06:34 [DEBUG] CLOUDFORMATION language rule file has a secondary rules file name to check (.cfnlintrc.yaml). Path:[/tmp/lint/.github/linters/.cfnlintrc.yml] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.cfnlintrc.yml], nor the file:[/tmp/lint/.github/linters/.cfnlintrc.yml], using Default rules at:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 13:06:34 [DEBUG] -> Language rules file variable (CLOUDFORMATION_LINTER_RULES) value is:[/action/lib/.automation/.cfnlintrc.yml] +2021-11-19 13:06:34 [DEBUG] -> CLOUDFORMATION_LINTER_RULES rules file (/action/lib/.automation/.cfnlintrc.yml) exists. +2021-11-19 13:06:34 [DEBUG] Loading rules for CLOJURE... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for CLOJURE... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: CLOJURE_FILE_NAME, language linter rules: CLOJURE_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:34 [DEBUG] CLOJURE language rule file (.clj-kondo/config.edn) has config name and edn extension +2021-11-19 13:06:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:34 [DEBUG] Checking if the user-provided:[.clj-kondo/config.edn] and exists at:[/tmp/lint/.github/linters/.clj-kondo/config.edn] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn]. +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.clj-kondo/config.edn], nor the file:[], using Default rules at:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 13:06:34 [DEBUG] -> Language rules file variable (CLOJURE_LINTER_RULES) value is:[/action/lib/.automation/.clj-kondo/config.edn] +2021-11-19 13:06:34 [DEBUG] -> CLOJURE_LINTER_RULES rules file (/action/lib/.automation/.clj-kondo/config.edn) exists. +2021-11-19 13:06:34 [DEBUG] Loading rules for COFFEESCRIPT... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for COFFEESCRIPT... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: COFFEESCRIPT_FILE_NAME, language linter rules: COFFEESCRIPT_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:34 [DEBUG] COFFEESCRIPT language rule file (.coffee-lint.json) has .coffee-lint name and json extension +2021-11-19 13:06:34 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:34 [DEBUG] Checking if the user-provided:[.coffee-lint.json] and exists at:[/tmp/lint/.github/linters/.coffee-lint.json] +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json]. +2021-11-19 13:06:34 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.coffee-lint.json], nor the file:[], using Default rules at:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 13:06:34 [DEBUG] -> Language rules file variable (COFFEESCRIPT_LINTER_RULES) value is:[/action/lib/.automation/.coffee-lint.json] +2021-11-19 13:06:34 [DEBUG] -> COFFEESCRIPT_LINTER_RULES rules file (/action/lib/.automation/.coffee-lint.json) exists. +2021-11-19 13:06:34 [DEBUG] Loading rules for CPP... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for CPP... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: CPP_FILE_NAME, language linter rules: CPP_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] CPP_FILE_NAME is not set. Skipping loading rules for CPP... +2021-11-19 13:06:34 [DEBUG] Loading rules for CSHARP... +2021-11-19 13:06:34 [DEBUG] Getting linter rules for CSHARP... +2021-11-19 13:06:34 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:34 [DEBUG] Variable names for language file name: CSHARP_FILE_NAME, language linter rules: CSHARP_LINTER_RULES +2021-11-19 13:06:34 [DEBUG] CSHARP_FILE_NAME is not set. Skipping loading rules for CSHARP... +2021-11-19 13:06:35 [DEBUG] Loading rules for CSS... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for CSS... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: CSS_FILE_NAME, language linter rules: CSS_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] CSS language rule file (.stylelintrc.json) has .stylelintrc name and json extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.stylelintrc.json] and exists at:[/tmp/lint/.github/linters/.stylelintrc.json] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json]. +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.stylelintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (CSS_LINTER_RULES) value is:[/action/lib/.automation/.stylelintrc.json] +2021-11-19 13:06:35 [DEBUG] -> CSS_LINTER_RULES rules file (/action/lib/.automation/.stylelintrc.json) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for DART... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for DART... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: DART_FILE_NAME, language linter rules: DART_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] DART language rule file (analysis_options.yml) has analysis_options name and yml extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[analysis_options.yml] and exists at:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml]. +2021-11-19 13:06:35 [DEBUG] DART language rule file has a secondary rules file name to check (analysis_options.yaml). Path:[/tmp/lint/.github/linters/analysis_options.yml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/analysis_options.yml], nor the file:[/tmp/lint/.github/linters/analysis_options.yml], using Default rules at:[/action/lib/.automation/analysis_options.yml] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (DART_LINTER_RULES) value is:[/action/lib/.automation/analysis_options.yml] +2021-11-19 13:06:35 [DEBUG] -> DART_LINTER_RULES rules file (/action/lib/.automation/analysis_options.yml) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for DOCKERFILE... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for DOCKERFILE... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: DOCKERFILE_FILE_NAME, language linter rules: DOCKERFILE_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] DOCKERFILE language rule file (.dockerfilelintrc) has .dockerfilelintrc name and dockerfilelintrc extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.dockerfilelintrc] and exists at:[/tmp/lint/.github/linters/.dockerfilelintrc] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc]. +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.dockerfilelintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (DOCKERFILE_LINTER_RULES) value is:[/action/lib/.automation/.dockerfilelintrc] +2021-11-19 13:06:35 [DEBUG] -> DOCKERFILE_LINTER_RULES rules file (/action/lib/.automation/.dockerfilelintrc) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for DOCKERFILE_HADOLINT... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for DOCKERFILE_HADOLINT... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: DOCKERFILE_HADOLINT_FILE_NAME, language linter rules: DOCKERFILE_HADOLINT_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] DOCKERFILE_HADOLINT language rule file (.hadolint.yaml) has .hadolint name and yaml extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.hadolint.yaml] and exists at:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml]. +2021-11-19 13:06:35 [DEBUG] DOCKERFILE_HADOLINT language rule file has a secondary rules file name to check (.hadolint.yml). Path:[/tmp/lint/.github/linters/.hadolint.yaml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.hadolint.yaml], nor the file:[/tmp/lint/.github/linters/.hadolint.yaml], using Default rules at:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (DOCKERFILE_HADOLINT_LINTER_RULES) value is:[/action/lib/.automation/.hadolint.yaml] +2021-11-19 13:06:35 [DEBUG] -> DOCKERFILE_HADOLINT_LINTER_RULES rules file (/action/lib/.automation/.hadolint.yaml) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for EDITORCONFIG... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for EDITORCONFIG... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: EDITORCONFIG_FILE_NAME, language linter rules: EDITORCONFIG_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] EDITORCONFIG language rule file (.ecrc) has .ecrc name and ecrc extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.ecrc] and exists at:[/tmp/lint/.github/linters/.ecrc] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc]. +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ecrc], nor the file:[], using Default rules at:[/action/lib/.automation/.ecrc] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (EDITORCONFIG_LINTER_RULES) value is:[/action/lib/.automation/.ecrc] +2021-11-19 13:06:35 [DEBUG] -> EDITORCONFIG_LINTER_RULES rules file (/action/lib/.automation/.ecrc) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for ENV... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for ENV... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: ENV_FILE_NAME, language linter rules: ENV_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] ENV_FILE_NAME is not set. Skipping loading rules for ENV... +2021-11-19 13:06:35 [DEBUG] Loading rules for GITHUB_ACTIONS... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GITHUB_ACTIONS... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GITHUB_ACTIONS_FILE_NAME, language linter rules: GITHUB_ACTIONS_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] GITHUB_ACTIONS language rule file (actionlint.yml) has actionlint name and yml extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[actionlint.yml] and exists at:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml]. +2021-11-19 13:06:35 [DEBUG] GITHUB_ACTIONS language rule file has a secondary rules file name to check (actionlint.yaml). Path:[/tmp/lint/.github/linters/actionlint.yml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/actionlint.yml], nor the file:[/tmp/lint/.github/linters/actionlint.yml], using Default rules at:[/action/lib/.automation/actionlint.yml] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (GITHUB_ACTIONS_LINTER_RULES) value is:[/action/lib/.automation/actionlint.yml] +2021-11-19 13:06:35 [DEBUG] -> GITHUB_ACTIONS_LINTER_RULES rules file (/action/lib/.automation/actionlint.yml) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for GITLEAKS... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GITLEAKS... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GITLEAKS_FILE_NAME, language linter rules: GITLEAKS_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] GITLEAKS language rule file (.gitleaks.toml) has .gitleaks name and toml extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.gitleaks.toml] and exists at:[/tmp/lint/.github/linters/.gitleaks.toml] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml]. +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gitleaks.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (GITLEAKS_LINTER_RULES) value is:[/action/lib/.automation/.gitleaks.toml] +2021-11-19 13:06:35 [DEBUG] -> GITLEAKS_LINTER_RULES rules file (/action/lib/.automation/.gitleaks.toml) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for GHERKIN... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GHERKIN... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GHERKIN_FILE_NAME, language linter rules: GHERKIN_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] GHERKIN language rule file (.gherkin-lintrc) has .gherkin-lintrc name and gherkin-lintrc extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.gherkin-lintrc] and exists at:[/tmp/lint/.github/linters/.gherkin-lintrc] +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc]. +2021-11-19 13:06:35 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.gherkin-lintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (GHERKIN_LINTER_RULES) value is:[/action/lib/.automation/.gherkin-lintrc] +2021-11-19 13:06:35 [DEBUG] -> GHERKIN_LINTER_RULES rules file (/action/lib/.automation/.gherkin-lintrc) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for GO... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GO... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GO_FILE_NAME, language linter rules: GO_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:35 [DEBUG] GO language rule file (.golangci.yml) has .golangci name and yml extension +2021-11-19 13:06:35 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:35 [DEBUG] Checking if the user-provided:[.golangci.yml] and exists at:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:06:35 [INFO] ---------------------------------------------- +2021-11-19 13:06:35 [INFO] User provided file:[/tmp/lint/.github/linters/.golangci.yml] exists, setting rules file... +2021-11-19 13:06:35 [DEBUG] -> Language rules file variable (GO_LINTER_RULES) value is:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:06:35 [DEBUG] -> GO_LINTER_RULES rules file (/tmp/lint/.github/linters/.golangci.yml) exists. +2021-11-19 13:06:35 [DEBUG] Loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GOOGLE_JAVA_FORMAT_FILE_NAME, language linter rules: GOOGLE_JAVA_FORMAT_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] GOOGLE_JAVA_FORMAT_FILE_NAME is not set. Skipping loading rules for GOOGLE_JAVA_FORMAT... +2021-11-19 13:06:35 [DEBUG] Loading rules for GROOVY... +2021-11-19 13:06:35 [DEBUG] Getting linter rules for GROOVY... +2021-11-19 13:06:35 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:35 [DEBUG] Variable names for language file name: GROOVY_FILE_NAME, language linter rules: GROOVY_LINTER_RULES +2021-11-19 13:06:35 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] GROOVY language rule file (.groovylintrc.json) has .groovylintrc name and json extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.groovylintrc.json] and exists at:[/tmp/lint/.github/linters/.groovylintrc.json] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json]. +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.groovylintrc.json], nor the file:[], using Default rules at:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (GROOVY_LINTER_RULES) value is:[/action/lib/.automation/.groovylintrc.json] +2021-11-19 13:06:36 [DEBUG] -> GROOVY_LINTER_RULES rules file (/action/lib/.automation/.groovylintrc.json) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for HTML... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for HTML... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: HTML_FILE_NAME, language linter rules: HTML_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] HTML language rule file (.htmlhintrc) has .htmlhintrc name and htmlhintrc extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.htmlhintrc] and exists at:[/tmp/lint/.github/linters/.htmlhintrc] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc]. +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.htmlhintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.htmlhintrc] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (HTML_LINTER_RULES) value is:[/action/lib/.automation/.htmlhintrc] +2021-11-19 13:06:36 [DEBUG] -> HTML_LINTER_RULES rules file (/action/lib/.automation/.htmlhintrc) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for JAVA... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JAVA... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JAVA_FILE_NAME, language linter rules: JAVA_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] JAVA language rule file (sun_checks.xml) has sun_checks name and xml extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[sun_checks.xml] and exists at:[/tmp/lint/.github/linters/sun_checks.xml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml]. +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/sun_checks.xml], nor the file:[], using Default rules at:[/action/lib/.automation/sun_checks.xml] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (JAVA_LINTER_RULES) value is:[/action/lib/.automation/sun_checks.xml] +2021-11-19 13:06:36 [DEBUG] -> JAVA_LINTER_RULES rules file (/action/lib/.automation/sun_checks.xml) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for JAVASCRIPT_ES... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JAVASCRIPT_ES... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JAVASCRIPT_ES_FILE_NAME, language linter rules: JAVASCRIPT_ES_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] JAVASCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:36 [DEBUG] JAVASCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (JAVASCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> JAVASCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for JAVASCRIPT_STANDARD... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JAVASCRIPT_STANDARD... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JAVASCRIPT_STANDARD_FILE_NAME, language linter rules: JAVASCRIPT_STANDARD_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] JAVASCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:36 [DEBUG] JAVASCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (JAVASCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> JAVASCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for JSCPD... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JSCPD... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JSCPD_FILE_NAME, language linter rules: JSCPD_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] JSCPD language rule file (.jscpd.json) has .jscpd name and json extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.jscpd.json] and exists at:[/tmp/lint/.github/linters/.jscpd.json] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json]. +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.jscpd.json], nor the file:[], using Default rules at:[/action/lib/.automation/.jscpd.json] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (JSCPD_LINTER_RULES) value is:[/action/lib/.automation/.jscpd.json] +2021-11-19 13:06:36 [DEBUG] -> JSCPD_LINTER_RULES rules file (/action/lib/.automation/.jscpd.json) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for JSON... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JSON... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JSON_FILE_NAME, language linter rules: JSON_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] JSON_FILE_NAME is not set. Skipping loading rules for JSON... +2021-11-19 13:06:36 [DEBUG] Loading rules for JSONC... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JSONC... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JSONC_FILE_NAME, language linter rules: JSONC_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] JSONC_FILE_NAME is not set. Skipping loading rules for JSONC... +2021-11-19 13:06:36 [DEBUG] Loading rules for JSX... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for JSX... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: JSX_FILE_NAME, language linter rules: JSX_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] JSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:36 [DEBUG] JSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (JSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:36 [DEBUG] -> JSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:36 [DEBUG] Loading rules for KUBERNETES_KUBEVAL... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for KUBERNETES_KUBEVAL... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: KUBERNETES_KUBEVAL_FILE_NAME, language linter rules: KUBERNETES_KUBEVAL_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] KUBERNETES_KUBEVAL_FILE_NAME is not set. Skipping loading rules for KUBERNETES_KUBEVAL... +2021-11-19 13:06:36 [DEBUG] Loading rules for KOTLIN... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for KOTLIN... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: KOTLIN_FILE_NAME, language linter rules: KOTLIN_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] KOTLIN_FILE_NAME is not set. Skipping loading rules for KOTLIN... +2021-11-19 13:06:36 [DEBUG] Loading rules for LATEX... +2021-11-19 13:06:36 [DEBUG] Getting linter rules for LATEX... +2021-11-19 13:06:36 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:36 [DEBUG] Variable names for language file name: LATEX_FILE_NAME, language linter rules: LATEX_LINTER_RULES +2021-11-19 13:06:36 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:36 [DEBUG] LATEX language rule file (.chktexrc) has .chktexrc name and chktexrc extension +2021-11-19 13:06:36 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:36 [DEBUG] Checking if the user-provided:[.chktexrc] and exists at:[/tmp/lint/.github/linters/.chktexrc] +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc]. +2021-11-19 13:06:36 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.chktexrc], nor the file:[], using Default rules at:[/action/lib/.automation/.chktexrc] +2021-11-19 13:06:36 [DEBUG] -> Language rules file variable (LATEX_LINTER_RULES) value is:[/action/lib/.automation/.chktexrc] +2021-11-19 13:06:37 [DEBUG] -> LATEX_LINTER_RULES rules file (/action/lib/.automation/.chktexrc) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for LUA... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for LUA... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: LUA_FILE_NAME, language linter rules: LUA_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] LUA language rule file (.luacheckrc) has .luacheckrc name and luacheckrc extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.luacheckrc] and exists at:[/tmp/lint/.github/linters/.luacheckrc] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.luacheckrc], nor the file:[], using Default rules at:[/action/lib/.automation/.luacheckrc] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (LUA_LINTER_RULES) value is:[/action/lib/.automation/.luacheckrc] +2021-11-19 13:06:37 [DEBUG] -> LUA_LINTER_RULES rules file (/action/lib/.automation/.luacheckrc) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for MARKDOWN... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for MARKDOWN... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: MARKDOWN_FILE_NAME, language linter rules: MARKDOWN_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] MARKDOWN language rule file (.markdown-lint.yml) has .markdown-lint name and yml extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.markdown-lint.yml] and exists at:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml]. +2021-11-19 13:06:37 [DEBUG] MARKDOWN language rule file has a secondary rules file name to check (.markdown-lint.yaml). Path:[/tmp/lint/.github/linters/.markdown-lint.yml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.markdown-lint.yml], nor the file:[/tmp/lint/.github/linters/.markdown-lint.yml], using Default rules at:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (MARKDOWN_LINTER_RULES) value is:[/action/lib/.automation/.markdown-lint.yml] +2021-11-19 13:06:37 [DEBUG] -> MARKDOWN_LINTER_RULES rules file (/action/lib/.automation/.markdown-lint.yml) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for NATURAL_LANGUAGE... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for NATURAL_LANGUAGE... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: NATURAL_LANGUAGE_FILE_NAME, language linter rules: NATURAL_LANGUAGE_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] NATURAL_LANGUAGE language rule file (.textlintrc) has .textlintrc name and textlintrc extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.textlintrc] and exists at:[/tmp/lint/.github/linters/.textlintrc] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.textlintrc], nor the file:[], using Default rules at:[/action/lib/.automation/.textlintrc] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (NATURAL_LANGUAGE_LINTER_RULES) value is:[/action/lib/.automation/.textlintrc] +2021-11-19 13:06:37 [DEBUG] -> NATURAL_LANGUAGE_LINTER_RULES rules file (/action/lib/.automation/.textlintrc) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for OPENAPI... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for OPENAPI... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: OPENAPI_FILE_NAME, language linter rules: OPENAPI_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] OPENAPI language rule file (.openapirc.yml) has .openapirc name and yml extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.openapirc.yml] and exists at:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml]. +2021-11-19 13:06:37 [DEBUG] OPENAPI language rule file has a secondary rules file name to check (.openapirc.yaml). Path:[/tmp/lint/.github/linters/.openapirc.yml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.openapirc.yml], nor the file:[/tmp/lint/.github/linters/.openapirc.yml], using Default rules at:[/action/lib/.automation/.openapirc.yml] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (OPENAPI_LINTER_RULES) value is:[/action/lib/.automation/.openapirc.yml] +2021-11-19 13:06:37 [DEBUG] -> OPENAPI_LINTER_RULES rules file (/action/lib/.automation/.openapirc.yml) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for PERL... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PERL... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PERL_FILE_NAME, language linter rules: PERL_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] PERL_FILE_NAME is not set. Skipping loading rules for PERL... +2021-11-19 13:06:37 [DEBUG] Loading rules for PHP_BUILTIN... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PHP_BUILTIN... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PHP_BUILTIN_FILE_NAME, language linter rules: PHP_BUILTIN_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] PHP_BUILTIN language rule file (php.ini) has php name and ini extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[php.ini] and exists at:[/tmp/lint/.github/linters/php.ini] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/php.ini], nor the file:[], using Default rules at:[/action/lib/.automation/php.ini] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (PHP_BUILTIN_LINTER_RULES) value is:[/action/lib/.automation/php.ini] +2021-11-19 13:06:37 [DEBUG] -> PHP_BUILTIN_LINTER_RULES rules file (/action/lib/.automation/php.ini) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for PHP_PHPCS... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PHP_PHPCS... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PHP_PHPCS_FILE_NAME, language linter rules: PHP_PHPCS_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] PHP_PHPCS language rule file (phpcs.xml) has phpcs name and xml extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[phpcs.xml] and exists at:[/tmp/lint/.github/linters/phpcs.xml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpcs.xml], nor the file:[], using Default rules at:[/action/lib/.automation/phpcs.xml] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (PHP_PHPCS_LINTER_RULES) value is:[/action/lib/.automation/phpcs.xml] +2021-11-19 13:06:37 [DEBUG] -> PHP_PHPCS_LINTER_RULES rules file (/action/lib/.automation/phpcs.xml) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for PHP_PHPSTAN... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PHP_PHPSTAN... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PHP_PHPSTAN_FILE_NAME, language linter rules: PHP_PHPSTAN_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] PHP_PHPSTAN language rule file (phpstan.neon) has phpstan name and neon extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[phpstan.neon] and exists at:[/tmp/lint/.github/linters/phpstan.neon] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/phpstan.neon], nor the file:[], using Default rules at:[/action/lib/.automation/phpstan.neon] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (PHP_PHPSTAN_LINTER_RULES) value is:[/action/lib/.automation/phpstan.neon] +2021-11-19 13:06:37 [DEBUG] -> PHP_PHPSTAN_LINTER_RULES rules file (/action/lib/.automation/phpstan.neon) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for PHP_PSALM... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PHP_PSALM... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PHP_PSALM_FILE_NAME, language linter rules: PHP_PSALM_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] PHP_PSALM language rule file (psalm.xml) has psalm name and xml extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[psalm.xml] and exists at:[/tmp/lint/.github/linters/psalm.xml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/psalm.xml], nor the file:[], using Default rules at:[/action/lib/.automation/psalm.xml] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (PHP_PSALM_LINTER_RULES) value is:[/action/lib/.automation/psalm.xml] +2021-11-19 13:06:37 [DEBUG] -> PHP_PSALM_LINTER_RULES rules file (/action/lib/.automation/psalm.xml) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for POWERSHELL... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for POWERSHELL... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: POWERSHELL_FILE_NAME, language linter rules: POWERSHELL_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] POWERSHELL language rule file (.powershell-psscriptanalyzer.psd1) has .powershell-psscriptanalyzer name and psd1 extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.powershell-psscriptanalyzer.psd1] and exists at:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1]. +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.powershell-psscriptanalyzer.psd1], nor the file:[], using Default rules at:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:06:37 [DEBUG] -> Language rules file variable (POWERSHELL_LINTER_RULES) value is:[/action/lib/.automation/.powershell-psscriptanalyzer.psd1] +2021-11-19 13:06:37 [DEBUG] -> POWERSHELL_LINTER_RULES rules file (/action/lib/.automation/.powershell-psscriptanalyzer.psd1) exists. +2021-11-19 13:06:37 [DEBUG] Loading rules for PROTOBUF... +2021-11-19 13:06:37 [DEBUG] Getting linter rules for PROTOBUF... +2021-11-19 13:06:37 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:37 [DEBUG] Variable names for language file name: PROTOBUF_FILE_NAME, language linter rules: PROTOBUF_LINTER_RULES +2021-11-19 13:06:37 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:37 [DEBUG] PROTOBUF language rule file (.protolintrc.yml) has .protolintrc name and yml extension +2021-11-19 13:06:37 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:37 [DEBUG] Checking if the user-provided:[.protolintrc.yml] and exists at:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 13:06:37 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml]. +2021-11-19 13:06:37 [DEBUG] PROTOBUF language rule file has a secondary rules file name to check (.protolintrc.yaml). Path:[/tmp/lint/.github/linters/.protolintrc.yml] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.protolintrc.yml], nor the file:[/tmp/lint/.github/linters/.protolintrc.yml], using Default rules at:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PROTOBUF_LINTER_RULES) value is:[/action/lib/.automation/.protolintrc.yml] +2021-11-19 13:06:38 [DEBUG] -> PROTOBUF_LINTER_RULES rules file (/action/lib/.automation/.protolintrc.yml) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for PYTHON_BLACK... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for PYTHON_BLACK... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: PYTHON_BLACK_FILE_NAME, language linter rules: PYTHON_BLACK_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] PYTHON_BLACK language rule file (.python-black) has .python-black name and python-black extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.python-black] and exists at:[/tmp/lint/.github/linters/.python-black] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-black], nor the file:[], using Default rules at:[/action/lib/.automation/.python-black] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PYTHON_BLACK_LINTER_RULES) value is:[/action/lib/.automation/.python-black] +2021-11-19 13:06:38 [DEBUG] -> PYTHON_BLACK_LINTER_RULES rules file (/action/lib/.automation/.python-black) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for PYTHON_PYLINT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for PYTHON_PYLINT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: PYTHON_PYLINT_FILE_NAME, language linter rules: PYTHON_PYLINT_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] PYTHON_PYLINT language rule file (.python-lint) has .python-lint name and python-lint extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.python-lint] and exists at:[/tmp/lint/.github/linters/.python-lint] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.python-lint], nor the file:[], using Default rules at:[/action/lib/.automation/.python-lint] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PYTHON_PYLINT_LINTER_RULES) value is:[/action/lib/.automation/.python-lint] +2021-11-19 13:06:38 [DEBUG] -> PYTHON_PYLINT_LINTER_RULES rules file (/action/lib/.automation/.python-lint) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for PYTHON_FLAKE8... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for PYTHON_FLAKE8... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: PYTHON_FLAKE8_FILE_NAME, language linter rules: PYTHON_FLAKE8_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] PYTHON_FLAKE8 language rule file (.flake8) has .flake8 name and flake8 extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.flake8] and exists at:[/tmp/lint/.github/linters/.flake8] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.flake8], nor the file:[], using Default rules at:[/action/lib/.automation/.flake8] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PYTHON_FLAKE8_LINTER_RULES) value is:[/action/lib/.automation/.flake8] +2021-11-19 13:06:38 [DEBUG] -> PYTHON_FLAKE8_LINTER_RULES rules file (/action/lib/.automation/.flake8) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for PYTHON_ISORT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for PYTHON_ISORT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: PYTHON_ISORT_FILE_NAME, language linter rules: PYTHON_ISORT_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] PYTHON_ISORT language rule file (.isort.cfg) has .isort name and cfg extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.isort.cfg] and exists at:[/tmp/lint/.github/linters/.isort.cfg] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.isort.cfg], nor the file:[], using Default rules at:[/action/lib/.automation/.isort.cfg] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PYTHON_ISORT_LINTER_RULES) value is:[/action/lib/.automation/.isort.cfg] +2021-11-19 13:06:38 [DEBUG] -> PYTHON_ISORT_LINTER_RULES rules file (/action/lib/.automation/.isort.cfg) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for PYTHON_MYPY... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for PYTHON_MYPY... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: PYTHON_MYPY_FILE_NAME, language linter rules: PYTHON_MYPY_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] PYTHON_MYPY language rule file (.mypy.ini) has .mypy name and ini extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.mypy.ini] and exists at:[/tmp/lint/.github/linters/.mypy.ini] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.mypy.ini], nor the file:[], using Default rules at:[/action/lib/.automation/.mypy.ini] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (PYTHON_MYPY_LINTER_RULES) value is:[/action/lib/.automation/.mypy.ini] +2021-11-19 13:06:38 [DEBUG] -> PYTHON_MYPY_LINTER_RULES rules file (/action/lib/.automation/.mypy.ini) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for R... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for R... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: R_FILE_NAME, language linter rules: R_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] R language rule file (.lintr) has .lintr name and lintr extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.lintr] and exists at:[/tmp/lint/.github/linters/.lintr] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.lintr], nor the file:[], using Default rules at:[/action/lib/.automation/.lintr] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (R_LINTER_RULES) value is:[/action/lib/.automation/.lintr] +2021-11-19 13:06:38 [DEBUG] -> R_LINTER_RULES rules file (/action/lib/.automation/.lintr) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for RAKU... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for RAKU... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: RAKU_FILE_NAME, language linter rules: RAKU_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] RAKU_FILE_NAME is not set. Skipping loading rules for RAKU... +2021-11-19 13:06:38 [DEBUG] Loading rules for RUBY... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for RUBY... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: RUBY_FILE_NAME, language linter rules: RUBY_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] RUBY language rule file (.ruby-lint.yml) has .ruby-lint name and yml extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.ruby-lint.yml] and exists at:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml]. +2021-11-19 13:06:38 [DEBUG] RUBY language rule file has a secondary rules file name to check (.ruby-lint.yaml). Path:[/tmp/lint/.github/linters/.ruby-lint.yml] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.ruby-lint.yml], nor the file:[/tmp/lint/.github/linters/.ruby-lint.yml], using Default rules at:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (RUBY_LINTER_RULES) value is:[/action/lib/.automation/.ruby-lint.yml] +2021-11-19 13:06:38 [DEBUG] -> RUBY_LINTER_RULES rules file (/action/lib/.automation/.ruby-lint.yml) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for RUST_2015... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for RUST_2015... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: RUST_2015_FILE_NAME, language linter rules: RUST_2015_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] RUST_2015_FILE_NAME is not set. Skipping loading rules for RUST_2015... +2021-11-19 13:06:38 [DEBUG] Loading rules for RUST_2018... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for RUST_2018... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: RUST_2018_FILE_NAME, language linter rules: RUST_2018_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] RUST_2018_FILE_NAME is not set. Skipping loading rules for RUST_2018... +2021-11-19 13:06:38 [DEBUG] Loading rules for RUST_CLIPPY... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for RUST_CLIPPY... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: RUST_CLIPPY_FILE_NAME, language linter rules: RUST_CLIPPY_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] RUST_CLIPPY_FILE_NAME is not set. Skipping loading rules for RUST_CLIPPY... +2021-11-19 13:06:38 [DEBUG] Loading rules for SCALAFMT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for SCALAFMT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: SCALAFMT_FILE_NAME, language linter rules: SCALAFMT_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:38 [DEBUG] SCALAFMT language rule file (.scalafmt.conf) has .scalafmt name and conf extension +2021-11-19 13:06:38 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:38 [DEBUG] Checking if the user-provided:[.scalafmt.conf] and exists at:[/tmp/lint/.github/linters/.scalafmt.conf] +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf]. +2021-11-19 13:06:38 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.scalafmt.conf], nor the file:[], using Default rules at:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 13:06:38 [DEBUG] -> Language rules file variable (SCALAFMT_LINTER_RULES) value is:[/action/lib/.automation/.scalafmt.conf] +2021-11-19 13:06:38 [DEBUG] -> SCALAFMT_LINTER_RULES rules file (/action/lib/.automation/.scalafmt.conf) exists. +2021-11-19 13:06:38 [DEBUG] Loading rules for SHELL_SHFMT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for SHELL_SHFMT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: SHELL_SHFMT_FILE_NAME, language linter rules: SHELL_SHFMT_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] SHELL_SHFMT_FILE_NAME is not set. Skipping loading rules for SHELL_SHFMT... +2021-11-19 13:06:38 [DEBUG] Loading rules for SNAKEMAKE_LINT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for SNAKEMAKE_LINT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:38 [DEBUG] Variable names for language file name: SNAKEMAKE_LINT_FILE_NAME, language linter rules: SNAKEMAKE_LINT_LINTER_RULES +2021-11-19 13:06:38 [DEBUG] SNAKEMAKE_LINT_FILE_NAME is not set. Skipping loading rules for SNAKEMAKE_LINT... +2021-11-19 13:06:38 [DEBUG] Loading rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 13:06:38 [DEBUG] Getting linter rules for SNAKEMAKE_SNAKEFMT... +2021-11-19 13:06:38 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: SNAKEMAKE_SNAKEFMT_FILE_NAME, language linter rules: SNAKEMAKE_SNAKEFMT_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] SNAKEMAKE_SNAKEFMT language rule file (.snakefmt.toml) has .snakefmt name and toml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.snakefmt.toml] and exists at:[/tmp/lint/.github/linters/.snakefmt.toml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml]. +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.snakefmt.toml], nor the file:[], using Default rules at:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (SNAKEMAKE_SNAKEFMT_LINTER_RULES) value is:[/action/lib/.automation/.snakefmt.toml] +2021-11-19 13:06:39 [DEBUG] -> SNAKEMAKE_SNAKEFMT_LINTER_RULES rules file (/action/lib/.automation/.snakefmt.toml) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for STATES... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for STATES... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: STATES_FILE_NAME, language linter rules: STATES_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] STATES_FILE_NAME is not set. Skipping loading rules for STATES... +2021-11-19 13:06:39 [DEBUG] Loading rules for SQL... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for SQL... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: SQL_FILE_NAME, language linter rules: SQL_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] SQL language rule file (.sql-config.json) has .sql-config name and json extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.sql-config.json] and exists at:[/tmp/lint/.github/linters/.sql-config.json] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json]. +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.sql-config.json], nor the file:[], using Default rules at:[/action/lib/.automation/.sql-config.json] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (SQL_LINTER_RULES) value is:[/action/lib/.automation/.sql-config.json] +2021-11-19 13:06:39 [DEBUG] -> SQL_LINTER_RULES rules file (/action/lib/.automation/.sql-config.json) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for SQLFLUFF... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for SQLFLUFF... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: SQLFLUFF_FILE_NAME, language linter rules: SQLFLUFF_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] SQLFLUFF_FILE_NAME is not set. Skipping loading rules for SQLFLUFF... +2021-11-19 13:06:39 [DEBUG] Loading rules for TEKTON... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TEKTON... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TEKTON_FILE_NAME, language linter rules: TEKTON_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] TEKTON_FILE_NAME is not set. Skipping loading rules for TEKTON... +2021-11-19 13:06:39 [DEBUG] Loading rules for TERRAFORM_TFLINT... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TERRAFORM_TFLINT... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TERRAFORM_TFLINT_FILE_NAME, language linter rules: TERRAFORM_TFLINT_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] TERRAFORM_TFLINT language rule file (.tflint.hcl) has .tflint name and hcl extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.tflint.hcl] and exists at:[/tmp/lint/.github/linters/.tflint.hcl] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl]. +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.tflint.hcl], nor the file:[], using Default rules at:[/action/lib/.automation/.tflint.hcl] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (TERRAFORM_TFLINT_LINTER_RULES) value is:[/action/lib/.automation/.tflint.hcl] +2021-11-19 13:06:39 [DEBUG] -> TERRAFORM_TFLINT_LINTER_RULES rules file (/action/lib/.automation/.tflint.hcl) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for TERRAFORM_TERRASCAN... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TERRAFORM_TERRASCAN... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TERRAFORM_TERRASCAN_FILE_NAME, language linter rules: TERRAFORM_TERRASCAN_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] TERRAFORM_TERRASCAN language rule file (terrascan.toml) has terrascan name and toml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[terrascan.toml] and exists at:[/tmp/lint/.github/linters/terrascan.toml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml]. +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/terrascan.toml], nor the file:[], using Default rules at:[/action/lib/.automation/terrascan.toml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (TERRAFORM_TERRASCAN_LINTER_RULES) value is:[/action/lib/.automation/terrascan.toml] +2021-11-19 13:06:39 [DEBUG] -> TERRAFORM_TERRASCAN_LINTER_RULES rules file (/action/lib/.automation/terrascan.toml) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for TERRAGRUNT... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TERRAGRUNT... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TERRAGRUNT_FILE_NAME, language linter rules: TERRAGRUNT_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] TERRAGRUNT_FILE_NAME is not set. Skipping loading rules for TERRAGRUNT... +2021-11-19 13:06:39 [DEBUG] Loading rules for TSX... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TSX... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TSX_FILE_NAME, language linter rules: TSX_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] TSX language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:39 [DEBUG] TSX language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (TSX_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> TSX_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for TYPESCRIPT_ES... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TYPESCRIPT_ES... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TYPESCRIPT_ES_FILE_NAME, language linter rules: TYPESCRIPT_ES_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] TYPESCRIPT_ES language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:39 [DEBUG] TYPESCRIPT_ES language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (TYPESCRIPT_ES_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> TYPESCRIPT_ES_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for TYPESCRIPT_STANDARD... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for TYPESCRIPT_STANDARD... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: TYPESCRIPT_STANDARD_FILE_NAME, language linter rules: TYPESCRIPT_STANDARD_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] TYPESCRIPT_STANDARD language rule file (.eslintrc.yml) has .eslintrc name and yml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.eslintrc.yml] and exists at:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml]. +2021-11-19 13:06:39 [DEBUG] TYPESCRIPT_STANDARD language rule file has a secondary rules file name to check (.eslintrc.yaml). Path:[/tmp/lint/.github/linters/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.eslintrc.yml], nor the file:[/tmp/lint/.github/linters/.eslintrc.yml], using Default rules at:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (TYPESCRIPT_STANDARD_LINTER_RULES) value is:[/action/lib/.automation/.eslintrc.yml] +2021-11-19 13:06:39 [DEBUG] -> TYPESCRIPT_STANDARD_LINTER_RULES rules file (/action/lib/.automation/.eslintrc.yml) exists. +2021-11-19 13:06:39 [DEBUG] Loading rules for XML... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for XML... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: XML_FILE_NAME, language linter rules: XML_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] XML_FILE_NAME is not set. Skipping loading rules for XML... +2021-11-19 13:06:39 [DEBUG] Loading rules for YAML... +2021-11-19 13:06:39 [DEBUG] Getting linter rules for YAML... +2021-11-19 13:06:39 [DEBUG] Default rules location: /action/lib/.automation... +2021-11-19 13:06:39 [DEBUG] Variable names for language file name: YAML_FILE_NAME, language linter rules: YAML_LINTER_RULES +2021-11-19 13:06:39 [DEBUG] Initializing LANGUAGE_LINTER_RULES value to an empty string... +2021-11-19 13:06:39 [DEBUG] YAML language rule file (.yaml-lint.yml) has .yaml-lint name and yml extension +2021-11-19 13:06:39 [DEBUG] Initializing SECONDARY_FILE_NAME and SECONDARY_LANGUAGE_FILE_PATH... +2021-11-19 13:06:39 [DEBUG] Checking if the user-provided:[.yaml-lint.yml] and exists at:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml]. +2021-11-19 13:06:39 [DEBUG] YAML language rule file has a secondary rules file name to check (.yaml-lint.yaml). Path:[/tmp/lint/.github/linters/.yaml-lint.yml] +2021-11-19 13:06:39 [DEBUG] -> Codebase does NOT have file:[/tmp/lint/.github/linters/.yaml-lint.yml], nor the file:[/tmp/lint/.github/linters/.yaml-lint.yml], using Default rules at:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 13:06:39 [DEBUG] -> Language rules file variable (YAML_LINTER_RULES) value is:[/action/lib/.automation/.yaml-lint.yml] +2021-11-19 13:06:39 [DEBUG] -> YAML_LINTER_RULES rules file (/action/lib/.automation/.yaml-lint.yml) exists. +2021-11-19 13:06:40 [DEBUG] ENV:[browser] +2021-11-19 13:06:40 [DEBUG] ENV:[es6] +2021-11-19 13:06:40 [DEBUG] ENV:[jest] +2021-11-19 13:06:40 [DEBUG] ENV:[browser] +2021-11-19 13:06:40 [DEBUG] ENV:[es6] +2021-11-19 13:06:40 [DEBUG] ENV:[jest] +2021-11-19 13:06:40 [DEBUG] --- Linter commands --- +2021-11-19 13:06:40 [DEBUG] ----------------------- +2021-11-19 13:06:40 [DEBUG] Linter key: LATEX, command: chktex -q -l /action/lib/.automation/.chktexrc +2021-11-19 13:06:40 [DEBUG] Linter key: RUBY, command: rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion +2021-11-19 13:06:40 [DEBUG] Linter key: PERL, command: perlcritic +2021-11-19 13:06:40 [DEBUG] Linter key: XML, command: xmllint +2021-11-19 13:06:40 [DEBUG] Linter key: ANSIBLE, command: ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml +2021-11-19 13:06:40 [DEBUG] Linter key: JAVASCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: MARKDOWN, command: markdownlint -c /action/lib/.automation/.markdown-lint.yml +2021-11-19 13:06:40 [DEBUG] Linter key: SNAKEMAKE_SNAKEFMT, command: snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff +2021-11-19 13:06:40 [DEBUG] Linter key: CPP, command: cpplint +2021-11-19 13:06:40 [DEBUG] Linter key: EDITORCONFIG, command: editorconfig-checker -config /action/lib/.automation/.ecrc +2021-11-19 13:06:40 [DEBUG] Linter key: GITLEAKS, command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p +2021-11-19 13:06:40 [DEBUG] Linter key: PHP_PHPSTAN, command: phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon +2021-11-19 13:06:40 [DEBUG] Linter key: ENV, command: dotenv-linter +2021-11-19 13:06:40 [DEBUG] Linter key: STATES, command: asl-validator --json-path +2021-11-19 13:06:40 [DEBUG] Linter key: GITHUB_ACTIONS, command: actionlint -config-file /action/lib/.automation/actionlint.yml +2021-11-19 13:06:40 [DEBUG] Linter key: TEKTON, command: tekton-lint +2021-11-19 13:06:40 [DEBUG] Linter key: TERRAFORM_TERRASCAN, command: terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f +2021-11-19 13:06:40 [DEBUG] Linter key: RUST_CLIPPY, command: clippy +2021-11-19 13:06:40 [DEBUG] Linter key: R, command: lintr +2021-11-19 13:06:40 [DEBUG] Linter key: BASH, command: shellcheck --color --external-sources +2021-11-19 13:06:40 [DEBUG] Linter key: JSCPD, command: jscpd --config /action/lib/.automation/.jscpd.json +2021-11-19 13:06:40 [DEBUG] Linter key: PYTHON_BLACK, command: black --config /action/lib/.automation/.python-black --diff --check +2021-11-19 13:06:40 [DEBUG] Linter key: JAVASCRIPT_PRETTIER, command: prettier --check +2021-11-19 13:06:40 [DEBUG] Linter key: PHP_BUILTIN, command: php -l -c /action/lib/.automation/php.ini +2021-11-19 13:06:40 [DEBUG] Linter key: NATURAL_LANGUAGE, command: textlint -c /action/lib/.automation/.textlintrc +2021-11-19 13:06:40 [DEBUG] Linter key: GROOVY, command: npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning +2021-11-19 13:06:40 [DEBUG] Linter key: GO, command: golangci-lint run -c /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:06:40 [DEBUG] Linter key: GHERKIN, command: gherkin-lint -c /action/lib/.automation/.gherkin-lintrc +2021-11-19 13:06:40 [DEBUG] Linter key: JSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: SCALAFMT, command: scalafmt --config /action/lib/.automation/.scalafmt.conf --test +2021-11-19 13:06:40 [DEBUG] Linter key: CSS, command: stylelint --config /action/lib/.automation/.stylelintrc.json +2021-11-19 13:06:40 [DEBUG] Linter key: SQLFLUFF, command: sqlfluff lint +2021-11-19 13:06:40 [DEBUG] Linter key: BASH_EXEC, command: bash-exec +2021-11-19 13:06:40 [DEBUG] Linter key: GOOGLE_JAVA_FORMAT, command: java -jar /usr/bin/google-java-format +2021-11-19 13:06:40 [DEBUG] Linter key: PHP_PHPCS, command: phpcs --standard=/action/lib/.automation/phpcs.xml +2021-11-19 13:06:40 [DEBUG] Linter key: TERRAGRUNT, command: terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file +2021-11-19 13:06:40 [DEBUG] Linter key: PHP_PSALM, command: psalm --config=/action/lib/.automation/psalm.xml +2021-11-19 13:06:40 [DEBUG] Linter key: PYTHON_PYLINT, command: pylint --rcfile /action/lib/.automation/.python-lint +2021-11-19 13:06:40 [DEBUG] Linter key: SHELL_SHFMT, command: shfmt -d +2021-11-19 13:06:40 [DEBUG] Linter key: SNAKEMAKE_LINT, command: snakemake --lint -s +2021-11-19 13:06:40 [DEBUG] Linter key: ARM, command: Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath +2021-11-19 13:06:40 [DEBUG] Linter key: POWERSHELL, command: Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path +2021-11-19 13:06:40 [DEBUG] Linter key: PYTHON_MYPY, command: mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive +2021-11-19 13:06:40 [DEBUG] Linter key: JSONC, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc +2021-11-19 13:06:40 [DEBUG] Linter key: COFFEESCRIPT, command: coffeelint -f /action/lib/.automation/.coffee-lint.json +2021-11-19 13:06:40 [DEBUG] Linter key: TERRAFORM_TFLINT, command: tflint -c /action/lib/.automation/.tflint.hcl +2021-11-19 13:06:40 [DEBUG] Linter key: CLOUDFORMATION, command: cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: PYTHON_FLAKE8, command: flake8 --config=/action/lib/.automation/.flake8 +2021-11-19 13:06:40 [DEBUG] Linter key: OPENAPI, command: spectral lint -r /action/lib/.automation/.openapirc.yml -D +2021-11-19 13:06:40 [DEBUG] Linter key: CLOJURE, command: clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint +2021-11-19 13:06:40 [DEBUG] Linter key: TSX, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: TYPESCRIPT_STANDARD, command: standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest +2021-11-19 13:06:40 [DEBUG] Linter key: TYPESCRIPT_ES, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: PROTOBUF, command: protolint lint --config_path /action/lib/.automation/.protolintrc.yml +2021-11-19 13:06:40 [DEBUG] Linter key: RAKU, command: raku +2021-11-19 13:06:40 [DEBUG] Linter key: TYPESCRIPT_PRETTIER, command: prettier --check +2021-11-19 13:06:40 [DEBUG] Linter key: DOCKERFILE_HADOLINT, command: hadolint -c /action/lib/.automation/.hadolint.yaml +2021-11-19 13:06:40 [DEBUG] Linter key: JAVA, command: java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml +2021-11-19 13:06:40 [DEBUG] Linter key: CLANG_FORMAT, command: clang-format --Werror --dry-run +2021-11-19 13:06:40 [DEBUG] Linter key: KOTLIN, command: ktlint +2021-11-19 13:06:40 [DEBUG] Linter key: YAML, command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable +2021-11-19 13:06:40 [DEBUG] Linter key: DART, command: dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml +2021-11-19 13:06:40 [DEBUG] Linter key: PYTHON_ISORT, command: isort --check --diff --sp /action/lib/.automation/.isort.cfg +2021-11-19 13:06:40 [DEBUG] Linter key: CSHARP, command: dotnet-format --folder --check --exclude / --include +2021-11-19 13:06:40 [DEBUG] Linter key: DOCKERFILE, command: dockerfilelint -c /action/lib/.automation +2021-11-19 13:06:40 [DEBUG] Linter key: JSON, command: eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json +2021-11-19 13:06:40 [DEBUG] Linter key: RUST_2018, command: rustfmt --check --edition 2018 +2021-11-19 13:06:40 [DEBUG] Linter key: HTML, command: htmlhint --config /action/lib/.automation/.htmlhintrc +2021-11-19 13:06:40 [DEBUG] Linter key: RUST_2015, command: rustfmt --check --edition 2015 +2021-11-19 13:06:40 [DEBUG] Linter key: SQL, command: sql-lint --config /action/lib/.automation/.sql-config.json +2021-11-19 13:06:40 [DEBUG] Linter key: KUBERNETES_KUBEVAL, command: kubeval --strict +2021-11-19 13:06:40 [DEBUG] Linter key: LUA, command: luacheck --config /action/lib/.automation/.luacheckrc +2021-11-19 13:06:40 [DEBUG] Linter key: JAVASCRIPT_STANDARD, command: standard --env browser --env es6 --env jest +2021-11-19 13:06:40 [DEBUG] --------------------------------------------- +2021-11-19 13:06:40 [DEBUG] User did not provide a SSL secret, moving on... +2021-11-19 13:06:40 [DEBUG] Building file list... +2021-11-19 13:06:40 [DEBUG] Validate all code base: true... +2021-11-19 13:06:40 [DEBUG] TEST_CASE_RUN: false... +2021-11-19 13:06:40 [DEBUG] ANSIBLE_DIRECTORY: /tmp/lint/ansible... +2021-11-19 13:06:40 [DEBUG] IGNORE_GITIGNORED_FILES: true... +2021-11-19 13:06:40 [DEBUG] IGNORE_GENERATED_FILES: false... +2021-11-19 13:06:40 [DEBUG] USE_FIND_ALGORITHM: false... +2021-11-19 13:06:40 [DEBUG] ---------------------------------------------- +2021-11-19 13:06:40 [DEBUG] Populating the file list with:[git -C "/tmp/lint" ls-tree -r --name-only HEAD | xargs -I % sh -c "echo /tmp/lint/%"] +2021-11-19 13:06:40 [DEBUG] RAW_FILE_ARRAY contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:06:40 [DEBUG] Loading the files list that Git ignores... +2021-11-19 13:06:41 [DEBUG] GIT_IGNORED_FILES contents: /tmp/lint/.DS_Store /tmp/lint/.idea/ /tmp/lint/example/.DS_Store /tmp/lint/net/.DS_Store +2021-11-19 13:06:41 [DEBUG] --- GIT_IGNORED_FILES_INDEX contents --- +2021-11-19 13:06:41 [DEBUG] ----------------------- +2021-11-19 13:06:41 [DEBUG] key: /tmp/lint/.idea/, value: 1 +2021-11-19 13:06:41 [DEBUG] key: /tmp/lint/net/.DS_Store, value: 3 +2021-11-19 13:06:41 [DEBUG] key: /tmp/lint/example/.DS_Store, value: 2 +2021-11-19 13:06:41 [DEBUG] key: /tmp/lint/.DS_Store, value: 0 +2021-11-19 13:06:41 [DEBUG] --------------------------------------------- +2021-11-19 13:06:41 [INFO] --------------------------------- +2021-11-19 13:06:41 [INFO] ------ File list to check: ------ +2021-11-19 13:06:41 [INFO] --------------------------------- +2021-11-19 13:06:41 [DEBUG] File:[/tmp/lint/.editorconfig], File_type:[editorconfig], Base_file:[.editorconfig] +2021-11-19 13:06:41 [TRACE] File:[/tmp/lint/.editorconfig], File extension:[editorconfig], File type: [/tmp/lint/.editorconfig: ASCII text] +2021-11-19 13:06:41 [TRACE] /tmp/lint/.editorconfig is NOT a supported shell script. Skipping +2021-11-19 13:06:41 [DEBUG] Failed to get filetype for:[/tmp/lint/.editorconfig]! +2021-11-19 13:06:41 [DEBUG]  +2021-11-19 13:06:41 [DEBUG] File:[/tmp/lint/.github/dependabot.yml], File_type:[yml], Base_file:[dependabot.yml] +2021-11-19 13:06:41 [TRACE] File:[/tmp/lint/.github/dependabot.yml], File extension:[yml], File type: [/tmp/lint/.github/dependabot.yml: ASCII text] +2021-11-19 13:06:41 [TRACE] /tmp/lint/.github/dependabot.yml is NOT a supported shell script. Skipping +2021-11-19 13:06:41 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a GitHub Actions file... +2021-11-19 13:06:41 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT GitHub Actions file. +2021-11-19 13:06:41 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:06:41 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Cloud Formation file... +2021-11-19 13:06:41 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is an OpenAPI file... +2021-11-19 13:06:41 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT an OpenAPI descriptor +2021-11-19 13:06:41 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Tekton file... +2021-11-19 13:06:41 [DEBUG] Checking if /tmp/lint/.github/dependabot.yml is a Kubernetes descriptor... +2021-11-19 13:06:41 [DEBUG] /tmp/lint/.github/dependabot.yml is NOT a Kubernetes descriptor +2021-11-19 13:06:41 [DEBUG]  +2021-11-19 13:06:41 [DEBUG] File:[/tmp/lint/.github/linters/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 13:06:41 [TRACE] File:[/tmp/lint/.github/linters/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.github/linters/.golangci.yml: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/.github/linters/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a GitHub Actions file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT GitHub Actions file. +2021-11-19 13:06:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Cloud Formation file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is an OpenAPI file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Tekton file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/linters/.golangci.yml is a Kubernetes descriptor... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/linters/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/.github/workflows/checks.yml], File_type:[yml], Base_file:[checks.yml] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/.github/workflows/checks.yml], File extension:[yml], File type: [/tmp/lint/.github/workflows/checks.yml: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/.github/workflows/checks.yml is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a GitHub Actions file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is GitHub Actions file. +2021-11-19 13:06:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Cloud Formation file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is an OpenAPI file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT an OpenAPI descriptor +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Tekton file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.github/workflows/checks.yml is a Kubernetes descriptor... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.github/workflows/checks.yml is NOT a Kubernetes descriptor +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/.gitignore], File_type:[gitignore], Base_file:[.gitignore] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/.gitignore], File extension:[gitignore], File type: [/tmp/lint/.gitignore: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/.gitignore is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Failed to get filetype for:[/tmp/lint/.gitignore]! +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/.golangci.yml], File_type:[yml], Base_file:[.golangci.yml] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/.golangci.yml], File extension:[yml], File type: [/tmp/lint/.golangci.yml: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/.golangci.yml is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a GitHub Actions file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.golangci.yml is NOT GitHub Actions file. +2021-11-19 13:06:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Cloud Formation file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is an OpenAPI file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.golangci.yml is NOT an OpenAPI descriptor +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Tekton file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.golangci.yml is a Kubernetes descriptor... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.golangci.yml is NOT a Kubernetes descriptor +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/.prettierrc.yml], File_type:[yml], Base_file:[.prettierrc.yml] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/.prettierrc.yml], File extension:[yml], File type: [/tmp/lint/.prettierrc.yml: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/.prettierrc.yml is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a GitHub Actions file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT GitHub Actions file. +2021-11-19 13:06:42 [DEBUG] ANSIBLE_DIRECTORY (/tmp/lint/ansible) does NOT exist. +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Cloud Formation file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is an OpenAPI file... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT an OpenAPI descriptor +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Tekton file... +2021-11-19 13:06:42 [DEBUG] Checking if /tmp/lint/.prettierrc.yml is a Kubernetes descriptor... +2021-11-19 13:06:42 [DEBUG] /tmp/lint/.prettierrc.yml is NOT a Kubernetes descriptor +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/LICENSE], File_type:[/tmp/lint/license], Base_file:[license] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/LICENSE], File extension:[/tmp/lint/license], File type: [/tmp/lint/LICENSE: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/LICENSE is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Failed to get filetype for:[/tmp/lint/LICENSE]! +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/Makefile], File_type:[/tmp/lint/makefile], Base_file:[makefile] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/Makefile], File extension:[/tmp/lint/makefile], File type: [/tmp/lint/Makefile: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/Makefile is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG] Failed to get filetype for:[/tmp/lint/Makefile]! +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/README.md], File_type:[md], Base_file:[readme.md] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/README.md], File extension:[md], File type: [/tmp/lint/README.md: C source, ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/README.md is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/closer.go], File_type:[go], Base_file:[closer.go] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/closer.go], File extension:[go], File type: [/tmp/lint/closer.go: ASCII text] +2021-11-19 13:06:42 [TRACE] /tmp/lint/closer.go is NOT a supported shell script. Skipping +2021-11-19 13:06:42 [DEBUG]  +2021-11-19 13:06:42 [DEBUG] File:[/tmp/lint/config/config.go], File_type:[go], Base_file:[config.go] +2021-11-19 13:06:42 [TRACE] File:[/tmp/lint/config/config.go], File extension:[go], File type: [/tmp/lint/config/config.go: Algol 68 source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/config/config.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/env/env.go], File_type:[go], Base_file:[env.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/env/env.go], File extension:[go], File type: [/tmp/lint/env/env.go: ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/env/env.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/errors/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/errors/errors.go], File extension:[go], File type: [/tmp/lint/errors/errors.go: ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/errors/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/config/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/config/main.go], File extension:[go], File type: [/tmp/lint/example/config/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/config/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/errors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/errors/main.go], File extension:[go], File type: [/tmp/lint/example/errors/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/errors/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/go.mod], File extension:[mod], File type: [/tmp/lint/example/go.mod: ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/go.mod is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.mod]! +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/go.sum], File extension:[sum], File type: [/tmp/lint/example/go.sum: ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/go.sum is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG] Failed to get filetype for:[/tmp/lint/example/go.sum]! +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/basicauth/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/basicauth/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/basicauth/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/basicauth/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/cors/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/cors/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/cors/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/cors/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromcookie/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/jwtfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/jwtfromtoken/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/jwtfromtoken/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/logger/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/logger/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/logger/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/logger/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/recover/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/recover/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/recover/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/recover/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/requestid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/requestid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/requestid/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/requestid/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/responsetime/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/responsetime/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/responsetime/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/responsetime/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/sessionid/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/sessionid/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/sessionid/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/sessionid/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/skip/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/skip/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/skip/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/skip/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/telemetry/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromcookie/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/tokenauthfromcookie/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:43 [TRACE] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go], File extension:[go], File type: [/tmp/lint/example/middlewares/tokenauthfromheader/main.go: C source, ASCII text] +2021-11-19 13:06:43 [TRACE] /tmp/lint/example/middlewares/tokenauthfromheader/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:43 [DEBUG]  +2021-11-19 13:06:43 [DEBUG] File:[/tmp/lint/example/persistence/mongo/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/repository/dummy.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File_type:[go], Base_file:[codec.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/codec.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/codec.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/codec.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File_type:[go], Base_file:[datetime.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/datetime.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/datetime.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/datetime.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/dummy.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entity.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entity.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entity.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File_type:[go], Base_file:[entitywithtimestamps.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File_type:[go], Base_file:[entitywithversions.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go], File extension:[go], File type: [/tmp/lint/example/persistence/mongo/store/entitywithversions.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/mongo/store/entitywithversions.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/postgres/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/postgres/main.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/postgres/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File_type:[go], Base_file:[dummy.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go], File extension:[go], File type: [/tmp/lint/example/persistence/postgres/repository/dummy.go: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/persistence/postgres/repository/dummy.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/services/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/services/main.go], File extension:[go], File type: [/tmp/lint/example/services/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/services/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/stream/jetstream/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/stream/jetstream/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstream/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/stream/jetstream/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/stream/jetstreamraw/main.go], File extension:[go], File type: [/tmp/lint/example/stream/jetstreamraw/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/stream/jetstreamraw/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/example/telemetry/main.go], File_type:[go], Base_file:[main.go] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/example/telemetry/main.go], File extension:[go], File type: [/tmp/lint/example/telemetry/main.go: C source, ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/example/telemetry/main.go is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/go.mod], File_type:[mod], Base_file:[go.mod] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/go.mod], File extension:[mod], File type: [/tmp/lint/go.mod: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/go.mod is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG] Failed to get filetype for:[/tmp/lint/go.mod]! +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/go.sum], File_type:[sum], Base_file:[go.sum] +2021-11-19 13:06:44 [TRACE] File:[/tmp/lint/go.sum], File extension:[sum], File type: [/tmp/lint/go.sum: ASCII text] +2021-11-19 13:06:44 [TRACE] /tmp/lint/go.sum is NOT a supported shell script. Skipping +2021-11-19 13:06:44 [DEBUG] Failed to get filetype for:[/tmp/lint/go.sum]! +2021-11-19 13:06:44 [DEBUG]  +2021-11-19 13:06:44 [DEBUG] File:[/tmp/lint/jwt/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/jwt/jwt.go], File extension:[go], File type: [/tmp/lint/jwt/jwt.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/jwt/jwt.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/jwt/jwtclaims.go], File_type:[go], Base_file:[jwtclaims.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/jwt/jwtclaims.go], File extension:[go], File type: [/tmp/lint/jwt/jwtclaims.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/jwt/jwtclaims.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/jwt/jwtkey.go], File_type:[go], Base_file:[jwtkey.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/jwt/jwtkey.go], File extension:[go], File type: [/tmp/lint/jwt/jwtkey.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/jwt/jwtkey.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/jwt/keyfunc.go], File_type:[go], Base_file:[keyfunc.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/jwt/keyfunc.go], File extension:[go], File type: [/tmp/lint/jwt/keyfunc.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/jwt/keyfunc.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/ldflags.go], File_type:[go], Base_file:[ldflags.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/ldflags.go], File extension:[go], File type: [/tmp/lint/ldflags.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/ldflags.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/configure.go], File_type:[go], Base_file:[configure.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/configure.go], File extension:[go], File type: [/tmp/lint/log/configure.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/configure.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields.go], File_type:[go], Base_file:[fields.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields.go], File extension:[go], File type: [/tmp/lint/log/fields.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_error.go], File_type:[go], Base_file:[fields_error.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_error.go], File extension:[go], File type: [/tmp/lint/log/fields_error.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_error.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_http.go], File_type:[go], Base_file:[fields_http.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_http.go], File extension:[go], File type: [/tmp/lint/log/fields_http.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_http.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_messaging.go], File_type:[go], Base_file:[fields_messaging.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_messaging.go], File extension:[go], File type: [/tmp/lint/log/fields_messaging.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_messaging.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_net.go], File_type:[go], Base_file:[fields_net.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_net.go], File extension:[go], File type: [/tmp/lint/log/fields_net.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_net.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_service.go], File_type:[go], Base_file:[fields_service.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_service.go], File extension:[go], File type: [/tmp/lint/log/fields_service.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_service.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/fields_trace.go], File_type:[go], Base_file:[fields_trace.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/fields_trace.go], File extension:[go], File type: [/tmp/lint/log/fields_trace.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/fields_trace.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/log.go], File extension:[go], File type: [/tmp/lint/log/log.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/log.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/log/with.go], File_type:[go], Base_file:[with.go] +2021-11-19 13:06:45 [TRACE] File:[/tmp/lint/log/with.go], File extension:[go], File type: [/tmp/lint/log/with.go: ASCII text] +2021-11-19 13:06:45 [TRACE] /tmp/lint/log/with.go is NOT a supported shell script. Skipping +2021-11-19 13:06:45 [DEBUG]  +2021-11-19 13:06:45 [DEBUG] File:[/tmp/lint/metrics/metrics.go], File_type:[go], Base_file:[metrics.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/metrics/metrics.go], File extension:[go], File type: [/tmp/lint/metrics/metrics.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/metrics/metrics.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/metrics/metrics_http.go], File_type:[go], Base_file:[metrics_http.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/metrics/metrics_http.go], File extension:[go], File type: [/tmp/lint/metrics/metrics_http.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/metrics/metrics_http.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/gotsrpc/decode.go], File_type:[go], Base_file:[decode.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/gotsrpc/decode.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/decode.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/gotsrpc/decode.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/gotsrpc/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/gotsrpc/errors.go], File extension:[go], File type: [/tmp/lint/net/gotsrpc/errors.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/gotsrpc/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/cookie/cookie.go], File_type:[go], Base_file:[cookie.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/cookie/cookie.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/cookie.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/cookie/cookie.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/cookie/domainprovider.go], File_type:[go], Base_file:[domainprovider.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/cookie/domainprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/domainprovider.go: C source, ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/cookie/domainprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/cookie/timeprovider.go], File_type:[go], Base_file:[timeprovider.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/cookie/timeprovider.go], File extension:[go], File type: [/tmp/lint/net/http/cookie/timeprovider.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/cookie/timeprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/header.go], File_type:[go], Base_file:[header.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/header.go], File extension:[go], File type: [/tmp/lint/net/http/header.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/header.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/headervalues.go], File_type:[go], Base_file:[headervalues.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/headervalues.go], File extension:[go], File type: [/tmp/lint/net/http/headervalues.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/headervalues.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/basicauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/basicauth.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File_type:[go], Base_file:[cookietokenprovider.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cookietokenprovider.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/cookietokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/cors.go], File_type:[go], Base_file:[cors.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/cors.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/cors.go: C source, ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/cors.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File_type:[go], Base_file:[headertokenprovider.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/headertokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/headertokenprovider.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/headertokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/jwt.go], File_type:[go], Base_file:[jwt.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/jwt.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/jwt.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/jwt.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/logger.go], File_type:[go], Base_file:[logger.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/logger.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/logger.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/logger.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 13:06:46 [TRACE] File:[/tmp/lint/net/http/middleware/middleware.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/middleware.go: ASCII text] +2021-11-19 13:06:46 [TRACE] /tmp/lint/net/http/middleware/middleware.go is NOT a supported shell script. Skipping +2021-11-19 13:06:46 [DEBUG]  +2021-11-19 13:06:46 [DEBUG] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File_type:[go], Base_file:[poweredbyheader.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/poweredbyheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/poweredbyheader.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/poweredbyheader.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/recover.go], File_type:[go], Base_file:[recover.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/recover.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/recover.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/recover.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requestid.go], File_type:[go], Base_file:[requestid.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/requestid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requestid.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/requestid.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File_type:[go], Base_file:[requesturiblacklistskipper.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiblacklistskipper.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/requesturiblacklistskipper.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File_type:[go], Base_file:[requesturiwhitelistskipper.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/responsetime.go], File_type:[go], Base_file:[responsetime.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/responsetime.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsetime.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/responsetime.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/responsewriter.go], File_type:[go], Base_file:[responsewriter.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/responsewriter.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/responsewriter.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/responsewriter.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/serverheader.go], File_type:[go], Base_file:[serverheader.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/serverheader.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/serverheader.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/serverheader.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/sessionid.go], File_type:[go], Base_file:[sessionid.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/sessionid.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/sessionid.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/sessionid.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/skip.go], File_type:[go], Base_file:[skip.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/skip.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skip.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/skip.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/skipper.go], File_type:[go], Base_file:[skipper.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/skipper.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/skipper.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/skipper.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/telemetry.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/telemetry.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenauth.go], File_type:[go], Base_file:[tokenauth.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/tokenauth.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenauth.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/tokenauth.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File_type:[go], Base_file:[tokenprovider.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/http/middleware/tokenprovider.go], File extension:[go], File type: [/tmp/lint/net/http/middleware/tokenprovider.go: ASCII text] +2021-11-19 13:06:47 [TRACE] /tmp/lint/net/http/middleware/tokenprovider.go is NOT a supported shell script. Skipping +2021-11-19 13:06:47 [DEBUG]  +2021-11-19 13:06:47 [DEBUG] File:[/tmp/lint/net/stream/jetstream/publisher.go], File_type:[go], Base_file:[publisher.go] +2021-11-19 13:06:47 [TRACE] File:[/tmp/lint/net/stream/jetstream/publisher.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/publisher.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/net/stream/jetstream/publisher.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/net/stream/jetstream/stream.go], File_type:[go], Base_file:[stream.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/net/stream/jetstream/stream.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/stream.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/net/stream/jetstream/stream.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File_type:[go], Base_file:[subscriber.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/net/stream/jetstream/subscriber.go], File extension:[go], File type: [/tmp/lint/net/stream/jetstream/subscriber.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/net/stream/jetstream/subscriber.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/net/stream/middleware.go], File_type:[go], Base_file:[middleware.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/net/stream/middleware.go], File extension:[go], File type: [/tmp/lint/net/stream/middleware.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/net/stream/middleware.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/option.go], File extension:[go], File type: [/tmp/lint/option.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/option.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/error.go], File extension:[go], File type: [/tmp/lint/persistence/error.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/error.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/mongo/collection.go], File_type:[go], Base_file:[collection.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/mongo/collection.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/collection.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/mongo/collection.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/mongo/entity.go], File_type:[go], Base_file:[entity.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/mongo/entity.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/entity.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/mongo/entity.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/mongo/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/mongo/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/persistor.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/mongo/persistor.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/mongo/utils.go], File_type:[go], Base_file:[utils.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/mongo/utils.go], File extension:[go], File type: [/tmp/lint/persistence/mongo/utils.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/mongo/utils.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/persistence/postgres/persistor.go], File_type:[go], Base_file:[persistor.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/persistence/postgres/persistor.go], File extension:[go], File type: [/tmp/lint/persistence/postgres/persistor.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/persistence/postgres/persistor.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/server.go], File extension:[go], File type: [/tmp/lint/server.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/server.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/server_test.go], File_type:[go], Base_file:[server_test.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/server_test.go], File extension:[go], File type: [/tmp/lint/server_test.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/server_test.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/service.go], File extension:[go], File type: [/tmp/lint/service.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/service.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/servicehttp.go], File extension:[go], File type: [/tmp/lint/servicehttp.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 13:06:48 [DEBUG]  +2021-11-19 13:06:48 [DEBUG] File:[/tmp/lint/servicehttpprometheus.go], File_type:[go], Base_file:[servicehttpprometheus.go] +2021-11-19 13:06:48 [TRACE] File:[/tmp/lint/servicehttpprometheus.go], File extension:[go], File type: [/tmp/lint/servicehttpprometheus.go: ASCII text] +2021-11-19 13:06:48 [TRACE] /tmp/lint/servicehttpprometheus.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/servicehttpviper.go], File_type:[go], Base_file:[servicehttpviper.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/servicehttpviper.go], File extension:[go], File type: [/tmp/lint/servicehttpviper.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/servicehttpviper.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/servicehttpzap.go], File_type:[go], Base_file:[servicehttpzap.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/servicehttpzap.go], File extension:[go], File type: [/tmp/lint/servicehttpzap.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/servicehttpzap.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/super-linter.log], File_type:[log], Base_file:[super-linter.log] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/super-linter.log], File extension:[log], File type: [/tmp/lint/super-linter.log: ASCII text, with escape sequences] +2021-11-19 13:06:49 [TRACE] /tmp/lint/super-linter.log is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG] Failed to get filetype for:[/tmp/lint/super-linter.log]! +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/telemetry/error.go], File_type:[go], Base_file:[error.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/telemetry/error.go], File extension:[go], File type: [/tmp/lint/telemetry/error.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/telemetry/error.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/telemetry/meter.go], File_type:[go], Base_file:[meter.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/telemetry/meter.go], File extension:[go], File type: [/tmp/lint/telemetry/meter.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/telemetry/meter.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/telemetry/span.go], File_type:[go], Base_file:[span.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/telemetry/span.go], File extension:[go], File type: [/tmp/lint/telemetry/span.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/telemetry/span.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/telemetry/telemetry.go], File_type:[go], Base_file:[telemetry.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/telemetry/telemetry.go], File extension:[go], File type: [/tmp/lint/telemetry/telemetry.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/telemetry/telemetry.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/client.go], File_type:[go], Base_file:[client.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/client.go], File extension:[go], File type: [/tmp/lint/test/client.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/client.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/log.go], File_type:[go], Base_file:[log.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/log.go], File extension:[go], File type: [/tmp/lint/test/log.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/log.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/option.go], File_type:[go], Base_file:[option.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/option.go], File extension:[go], File type: [/tmp/lint/test/option.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/option.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/server.go], File_type:[go], Base_file:[server.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/server.go], File extension:[go], File type: [/tmp/lint/test/server.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/server.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/service.go], File_type:[go], Base_file:[service.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/service.go], File extension:[go], File type: [/tmp/lint/test/service.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/service.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/test/servicehttp.go], File_type:[go], Base_file:[servicehttp.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/test/servicehttp.go], File extension:[go], File type: [/tmp/lint/test/servicehttp.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/test/servicehttp.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/utils/net/http/basicauth.go], File_type:[go], Base_file:[basicauth.go] +2021-11-19 13:06:49 [TRACE] File:[/tmp/lint/utils/net/http/basicauth.go], File extension:[go], File type: [/tmp/lint/utils/net/http/basicauth.go: ASCII text] +2021-11-19 13:06:49 [TRACE] /tmp/lint/utils/net/http/basicauth.go is NOT a supported shell script. Skipping +2021-11-19 13:06:49 [DEBUG]  +2021-11-19 13:06:49 [DEBUG] File:[/tmp/lint/utils/net/http/errors.go], File_type:[go], Base_file:[errors.go] +2021-11-19 13:06:50 [TRACE] File:[/tmp/lint/utils/net/http/errors.go], File extension:[go], File type: [/tmp/lint/utils/net/http/errors.go: ASCII text] +2021-11-19 13:06:50 [TRACE] /tmp/lint/utils/net/http/errors.go is NOT a supported shell script. Skipping +2021-11-19 13:06:50 [DEBUG]  +2021-11-19 13:06:50 [DEBUG] File:[/tmp/lint/utils/net/http/request.go], File_type:[go], Base_file:[request.go] +2021-11-19 13:06:50 [TRACE] File:[/tmp/lint/utils/net/http/request.go], File extension:[go], File type: [/tmp/lint/utils/net/http/request.go: ASCII text] +2021-11-19 13:06:50 [TRACE] /tmp/lint/utils/net/http/request.go is NOT a supported shell script. Skipping +2021-11-19 13:06:50 [DEBUG]  +2021-11-19 13:06:50 [INFO] ---------------------------------------------- +2021-11-19 13:06:50 [INFO] Successfully gathered list of files... +2021-11-19 13:06:50 [DEBUG] --- ENV (before running linters) --- +2021-11-19 13:06:50 [DEBUG] ------------------------------------ +2021-11-19 13:06:50 [DEBUG] ENV: +2021-11-19 13:06:50 [DEBUG] ANSIBLE_LINTER_RULES=/action/lib/.automation/.ansible-lint.yml +ARM_LINTER_RULES=/action/lib/.automation/.arm-ttk.psd1 +ARM_TTK_PSD1=/usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 +BUILD_DATE= +BUILD_REVISION=563be7dc5568017515b9e700329e9c6d3862f2b7 +BUILD_VERSION=563be7dc5568017515b9e700329e9c6d3862f2b7 +CLOJURE_LINTER_RULES=/action/lib/.automation/.clj-kondo/config.edn +CLOUDFORMATION_LINTER_RULES=/action/lib/.automation/.cfnlintrc.yml +COFFEESCRIPT_LINTER_RULES=/action/lib/.automation/.coffee-lint.json +CSS_LINTER_RULES=/action/lib/.automation/.stylelintrc.json +DART_LINTER_RULES=/action/lib/.automation/analysis_options.yml +DEFAULT_ANSIBLE_DIRECTORY=/tmp/lint/ansible +DEFAULT_BRANCH=main +DEFAULT_DISABLE_ERRORS=false +DEFAULT_TEST_CASE_ANSIBLE_DIRECTORY=/tmp/lint/.automation/test/ansible +DOCKERFILE_HADOLINT_LINTER_RULES=/action/lib/.automation/.hadolint.yaml +DOCKERFILE_LINTER_RULES=/action/lib/.automation/.dockerfilelintrc +EDITORCONFIG_LINTER_RULES=/action/lib/.automation/.ecrc +ERRORS_FOUND_ANSIBLE=0 +ERRORS_FOUND_ARM=0 +ERRORS_FOUND_BASH_EXEC=0 +ERRORS_FOUND_CLANG_FORMAT=0 +ERRORS_FOUND_CLOJURE=0 +ERRORS_FOUND_CLOUDFORMATION=0 +ERRORS_FOUND_COFFEESCRIPT=0 +ERRORS_FOUND_CPP=0 +ERRORS_FOUND_CSHARP=0 +ERRORS_FOUND_CSS=0 +ERRORS_FOUND_DART=0 +ERRORS_FOUND_DOCKERFILE=0 +ERRORS_FOUND_DOCKERFILE_HADOLINT=0 +ERRORS_FOUND_EDITORCONFIG=0 +ERRORS_FOUND_ENV=0 +ERRORS_FOUND_GHERKIN=0 +ERRORS_FOUND_GITHUB_ACTIONS=0 +ERRORS_FOUND_GITLEAKS=0 +ERRORS_FOUND_GOOGLE_JAVA_FORMAT=0 +ERRORS_FOUND_GROOVY=0 +ERRORS_FOUND_HTML=0 +ERRORS_FOUND_JAVA=0 +ERRORS_FOUND_JAVASCRIPT_ES=0 +ERRORS_FOUND_JAVASCRIPT_STANDARD=0 +ERRORS_FOUND_JSON=0 +ERRORS_FOUND_JSONC=0 +ERRORS_FOUND_JSX=0 +ERRORS_FOUND_KOTLIN=0 +ERRORS_FOUND_KUBERNETES_KUBEVAL=0 +ERRORS_FOUND_LATEX=0 +ERRORS_FOUND_LUA=0 +ERRORS_FOUND_MARKDOWN=0 +ERRORS_FOUND_NATURAL_LANGUAGE=0 +ERRORS_FOUND_OPENAPI=0 +ERRORS_FOUND_PERL=0 +ERRORS_FOUND_PHP_BUILTIN=0 +ERRORS_FOUND_PHP_PHPCS=0 +ERRORS_FOUND_PHP_PHPSTAN=0 +ERRORS_FOUND_PHP_PSALM=0 +ERRORS_FOUND_POWERSHELL=0 +ERRORS_FOUND_PROTOBUF=0 +ERRORS_FOUND_PYTHON_BLACK=0 +ERRORS_FOUND_PYTHON_FLAKE8=0 +ERRORS_FOUND_PYTHON_ISORT=0 +ERRORS_FOUND_PYTHON_MYPY=0 +ERRORS_FOUND_PYTHON_PYLINT=0 +ERRORS_FOUND_R=0 +ERRORS_FOUND_RAKU=0 +ERRORS_FOUND_RUBY=0 +ERRORS_FOUND_RUST_2015=0 +ERRORS_FOUND_RUST_2018=0 +ERRORS_FOUND_RUST_CLIPPY=0 +ERRORS_FOUND_SCALAFMT=0 +ERRORS_FOUND_SNAKEMAKE_LINT=0 +ERRORS_FOUND_SNAKEMAKE_SNAKEFMT=0 +ERRORS_FOUND_SQL=0 +ERRORS_FOUND_SQLFLUFF=0 +ERRORS_FOUND_STATES=0 +ERRORS_FOUND_TEKTON=0 +ERRORS_FOUND_TERRAFORM_TERRASCAN=0 +ERRORS_FOUND_TERRAFORM_TFLINT=0 +ERRORS_FOUND_TERRAGRUNT=0 +ERRORS_FOUND_TSX=0 +ERRORS_FOUND_TYPESCRIPT_ES=0 +ERRORS_FOUND_TYPESCRIPT_STANDARD=0 +ERRORS_FOUND_XML=0 +ERRORS_FOUND_YAML=0 +ERROR_ON_MISSING_EXEC_BIT=false +GHERKIN_LINTER_RULES=/action/lib/.automation/.gherkin-lintrc +GITHUB_ACTIONS_LINTER_RULES=/action/lib/.automation/actionlint.yml +GITLEAKS_LINTER_RULES=/action/lib/.automation/.gitleaks.toml +GO_LINTER_RULES=/tmp/lint/.github/linters/.golangci.yml +GROOVY_LINTER_RULES=/action/lib/.automation/.groovylintrc.json +HOME=/root +HOSTNAME=b61f8c8d9ab8 +HTML_LINTER_RULES=/action/lib/.automation/.htmlhintrc +IGNORE_GITIGNORED_FILES=true +JAVASCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +JAVASCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +JAVA_LINTER_RULES=/action/lib/.automation/sun_checks.xml +JSCPD_LINTER_RULES=/action/lib/.automation/.jscpd.json +JSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +LATEX_LINTER_RULES=/action/lib/.automation/.chktexrc +LOG_DEBUG= +LOG_ERROR=true +LOG_NOTICE=true +LOG_TEMP=/tmp/tmp.U3ZiHdt1Aa +LOG_TRACE= +LOG_VERBOSE=true +LOG_WARN=true +LUA_LINTER_RULES=/action/lib/.automation/.luacheckrc +MARKDOWN_LINTER_RULES=/action/lib/.automation/.markdown-lint.yml +NATURAL_LANGUAGE_LINTER_RULES=/action/lib/.automation/.textlintrc +NC= +OPENAPI_LINTER_RULES=/action/lib/.automation/.openapirc.yml +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/var/cache/dotnet/tools:/usr/share/dotnet:/node_modules/.bin +PHP_BUILTIN_LINTER_RULES=/action/lib/.automation/php.ini +PHP_PHPCS_LINTER_RULES=/action/lib/.automation/phpcs.xml +PHP_PHPSTAN_LINTER_RULES=/action/lib/.automation/phpstan.neon +PHP_PSALM_LINTER_RULES=/action/lib/.automation/psalm.xml +POWERSHELL_LINTER_RULES=/action/lib/.automation/.powershell-psscriptanalyzer.psd1 +PROTOBUF_LINTER_RULES=/action/lib/.automation/.protolintrc.yml +PWD=/ +PYTHON_BLACK_LINTER_RULES=/action/lib/.automation/.python-black +PYTHON_FLAKE8_LINTER_RULES=/action/lib/.automation/.flake8 +PYTHON_ISORT_LINTER_RULES=/action/lib/.automation/.isort.cfg +PYTHON_MYPY_LINTER_RULES=/action/lib/.automation/.mypy.ini +PYTHON_PYLINT_LINTER_RULES=/action/lib/.automation/.python-lint +RUBY_LINTER_RULES=/action/lib/.automation/.ruby-lint.yml +RUN_LOCAL=true +R_LINTER_RULES=/action/lib/.automation/.lintr +SCALAFMT_LINTER_RULES=/action/lib/.automation/.scalafmt.conf +SHLVL=0 +SNAKEMAKE_SNAKEFMT_LINTER_RULES=/action/lib/.automation/.snakefmt.toml +SQL_LINTER_RULES=/action/lib/.automation/.sql-config.json +TERM=xterm +TERRAFORM_TERRASCAN_LINTER_RULES=/action/lib/.automation/terrascan.toml +TERRAFORM_TFLINT_LINTER_RULES=/action/lib/.automation/.tflint.hcl +TEST_CASE_FOLDER=.automation/test +TSX_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_ES_LINTER_RULES=/action/lib/.automation/.eslintrc.yml +TYPESCRIPT_STANDARD_LINTER_RULES=--env browser --env es6 --env jest +VALIDATE_ANSIBLE=true +VALIDATE_ARM=true +VALIDATE_BASH=false +VALIDATE_BASH_EXEC=true +VALIDATE_CLANG_FORMAT=true +VALIDATE_CLOJURE=true +VALIDATE_CLOUDFORMATION=true +VALIDATE_COFFEESCRIPT=true +VALIDATE_CPP=true +VALIDATE_CSHARP=true +VALIDATE_CSS=true +VALIDATE_DART=true +VALIDATE_DOCKERFILE=true +VALIDATE_DOCKERFILE_HADOLINT=true +VALIDATE_EDITORCONFIG=true +VALIDATE_ENV=true +VALIDATE_GHERKIN=true +VALIDATE_GITHUB_ACTIONS=true +VALIDATE_GITLEAKS=true +VALIDATE_GO=false +VALIDATE_GOOGLE_JAVA_FORMAT=true +VALIDATE_GROOVY=true +VALIDATE_HTML=true +VALIDATE_JAVA=true +VALIDATE_JAVASCRIPT_ES=true +VALIDATE_JAVASCRIPT_STANDARD=true +VALIDATE_JSCPD=false +VALIDATE_JSON=true +VALIDATE_JSONC=true +VALIDATE_JSX=true +VALIDATE_KOTLIN=true +VALIDATE_KUBERNETES_KUBEVAL=true +VALIDATE_LATEX=true +VALIDATE_LUA=true +VALIDATE_MARKDOWN=true +VALIDATE_NATURAL_LANGUAGE=true +VALIDATE_OPENAPI=true +VALIDATE_PERL=true +VALIDATE_PHP_BUILTIN=true +VALIDATE_PHP_PHPCS=true +VALIDATE_PHP_PHPSTAN=true +VALIDATE_PHP_PSALM=true +VALIDATE_POWERSHELL=true +VALIDATE_PROTOBUF=true +VALIDATE_PYTHON_BLACK=true +VALIDATE_PYTHON_FLAKE8=true +VALIDATE_PYTHON_ISORT=true +VALIDATE_PYTHON_MYPY=true +VALIDATE_PYTHON_PYLINT=true +VALIDATE_R=true +VALIDATE_RAKU=true +VALIDATE_RUBY=true +VALIDATE_RUST_2015=true +VALIDATE_RUST_2018=true +VALIDATE_RUST_CLIPPY=true +VALIDATE_SCALAFMT=true +VALIDATE_SHELL_SHFMT=false +VALIDATE_SNAKEMAKE_LINT=true +VALIDATE_SNAKEMAKE_SNAKEFMT=true +VALIDATE_SQL=true +VALIDATE_SQLFLUFF=true +VALIDATE_STATES=true +VALIDATE_TEKTON=true +VALIDATE_TERRAFORM_TERRASCAN=true +VALIDATE_TERRAFORM_TFLINT=true +VALIDATE_TERRAGRUNT=true +VALIDATE_TSX=true +VALIDATE_TYPESCRIPT_ES=true +VALIDATE_TYPESCRIPT_STANDARD=true +VALIDATE_XML=true +VALIDATE_YAML=true +VERSION_FILE=/action/lib/functions/linterVersions.txt +YAML_LINTER_RULES=/action/lib/.automation/.yaml-lint.yml +_=/bin/printenv +2021-11-19 13:06:50 [DEBUG] ------------------------------------ +2021-11-19 13:06:50 [DEBUG] Running linter for the ANSIBLE language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ANSIBLE... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to ansible-lint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to ansible-lint -v -c /action/lib/.automation/.ansible-lint.yml... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ANSIBLE... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_ANSIBLE file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking ansible-lint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[ANSIBLE] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the ARM language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ARM... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to arm-ttk... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to Import-Module /usr/lib/microsoft/arm-ttk-master/arm-ttk/arm-ttk.psd1 ; ${config} = $(Import-PowerShellDataFile -Path /action/lib/.automation/.arm-ttk.psd1) ; Test-AzTemplate @config -TemplatePath... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ARM... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_ARM file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking arm-ttk linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[ARM] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the BASH language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:06:50 [DEBUG] Running linter for the BASH_EXEC language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_BASH_EXEC... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to bash-exec... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to bash-exec... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_BASH_EXEC... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_BASH_EXEC file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking bash-exec linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[BASH_EXEC] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CLANG_FORMAT language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLANG_FORMAT... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to clang-format... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to clang-format --Werror --dry-run... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLANG_FORMAT... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CLANG_FORMAT file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking clang-format linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CLANG_FORMAT] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CLOUDFORMATION language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOUDFORMATION... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to cfn-lint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to cfn-lint --config-file /action/lib/.automation/.cfnlintrc.yml... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOUDFORMATION... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CLOUDFORMATION file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking cfn-lint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CLOUDFORMATION] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CLOJURE language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CLOJURE... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to clj-kondo... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to clj-kondo --config /action/lib/.automation/.clj-kondo/config.edn --lint... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CLOJURE... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CLOJURE file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking clj-kondo linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CLOJURE] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the COFFEESCRIPT language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_COFFEESCRIPT... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to coffeelint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to coffeelint -f /action/lib/.automation/.coffee-lint.json... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_COFFEESCRIPT... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_COFFEESCRIPT file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking coffeelint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[COFFEESCRIPT] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CPP language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CPP... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to cpplint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to cpplint... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CPP... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CPP file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking cpplint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CPP] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CSHARP language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSHARP... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to dotnet-format... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to dotnet-format --folder --check --exclude / --include... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSHARP... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CSHARP file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking dotnet-format linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CSHARP] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the CSS language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_CSS... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to stylelint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to stylelint --config /action/lib/.automation/.stylelintrc.json... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_CSS... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_CSS file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking stylelint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[CSS] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the DART language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DART... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to dart... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to dartanalyzer --fatal-infos --fatal-warnings --options /action/lib/.automation/analysis_options.yml... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DART... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_DART file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking dart linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[DART] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the DOCKERFILE language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to dockerfilelint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to dockerfilelint -c /action/lib/.automation... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_DOCKERFILE file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking dockerfilelint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the DOCKERFILE_HADOLINT language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_DOCKERFILE_HADOLINT... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to hadolint... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to hadolint -c /action/lib/.automation/.hadolint.yaml... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_DOCKERFILE_HADOLINT... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_DOCKERFILE_HADOLINT file array contents:  +2021-11-19 13:06:50 [DEBUG] Invoking hadolint linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] - No files found in changeset to lint for language:[DOCKERFILE_HADOLINT] +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:06:50 [DEBUG] Running linter for the EDITORCONFIG language... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_EDITORCONFIG... +2021-11-19 13:06:50 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:06:50 [DEBUG] Found an EditorConfig file at /tmp/lint/.editorconfig +2021-11-19 13:06:50 [DEBUG] Setting LINTER_NAME to editorconfig-checker... +2021-11-19 13:06:50 [DEBUG] Setting LINTER_COMMAND to editorconfig-checker -config /action/lib/.automation/.ecrc... +2021-11-19 13:06:50 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_EDITORCONFIG... +2021-11-19 13:06:50 [DEBUG] FILE_ARRAY_EDITORCONFIG file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:06:50 [DEBUG] Invoking editorconfig-checker linter. TEST_CASE_RUN: false +2021-11-19 13:06:50 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:06:50 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:06:50 [INFO]  +2021-11-19 13:06:50 [INFO] ---------------------------------------------- +2021-11-19 13:06:51 [INFO] ---------------------------------------------- +2021-11-19 13:06:51 [DEBUG] Running LintCodebase. FILE_TYPE: EDITORCONFIG. Linter name: editorconfig-checker, linter command: editorconfig-checker -config /action/lib/.automation/.ecrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:06:51 [INFO] Linting [EDITORCONFIG] files... +2021-11-19 13:06:51 [INFO] ---------------------------------------------- +2021-11-19 13:06:51 [INFO] ---------------------------------------------- +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 13:06:51 [INFO] - File:[.editorconfig] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:06:51 [INFO] - File:[dependabot.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:06:51 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:06:51 [INFO] - File:[checks.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 13:06:51 [INFO] - File:[.gitignore] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:06:51 [INFO] - File:[.golangci.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:06:51 [INFO] - File:[.prettierrc.yml] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 13:06:51 [INFO] - File:[LICENSE] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 13:06:51 [INFO] - File:[Makefile] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:06:51 [INFO] - File:[README.md] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 13:06:51 [INFO] - File:[closer.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 13:06:51 [INFO] - File:[config.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 13:06:51 [INFO] - File:[env.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:51 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:51 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 13:06:51 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:51 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:51 [INFO] --------------------------- +2021-11-19 13:06:51 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 13:06:51 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 13:06:52 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 13:06:52 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 13:06:52 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:52 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:52 [INFO] --------------------------- +2021-11-19 13:06:52 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 13:06:52 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:52 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:52 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 13:06:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 13:06:53 [INFO] - File:[codec.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 13:06:53 [INFO] - File:[datetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 13:06:53 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 13:06:53 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 13:06:53 [INFO] - File:[entitywithtimestamps.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 13:06:53 [INFO] - File:[entitywithversions.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 13:06:53 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:53 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:53 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 13:06:53 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:53 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:53 [INFO] --------------------------- +2021-11-19 13:06:53 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 13:06:54 [INFO] - File:[dummy.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 13:06:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 13:06:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 13:06:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 13:06:54 [INFO] - File:[main.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 13:06:54 [INFO] - File:[go.mod] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 13:06:54 [INFO] - File:[go.sum] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 13:06:54 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 13:06:54 [INFO] - File:[jwtclaims.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 13:06:54 [INFO] - File:[jwtkey.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 13:06:54 [INFO] - File:[keyfunc.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 13:06:54 [INFO] - File:[ldflags.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 13:06:54 [INFO] - File:[configure.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:54 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:54 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 13:06:54 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:54 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:54 [INFO] --------------------------- +2021-11-19 13:06:54 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 13:06:54 [INFO] - File:[fields.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 13:06:55 [INFO] - File:[fields_error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 13:06:55 [INFO] - File:[fields_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 13:06:55 [INFO] - File:[fields_messaging.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 13:06:55 [INFO] - File:[fields_net.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 13:06:55 [INFO] - File:[fields_service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 13:06:55 [INFO] - File:[fields_trace.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 13:06:55 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 13:06:55 [INFO] - File:[with.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 13:06:55 [INFO] - File:[metrics.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 13:06:55 [INFO] - File:[metrics_http.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 13:06:55 [INFO] - File:[decode.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:55 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:55 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 13:06:55 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:55 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:55 [INFO] --------------------------- +2021-11-19 13:06:55 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 13:06:56 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 13:06:56 [INFO] - File:[cookie.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 13:06:56 [INFO] - File:[domainprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 13:06:56 [INFO] - File:[timeprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 13:06:56 [INFO] - File:[header.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 13:06:56 [INFO] - File:[headervalues.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 13:06:56 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:56 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 13:06:56 [INFO] - File:[cookietokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:56 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:56 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 13:06:56 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:56 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:56 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 13:06:57 [INFO] - File:[cors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 13:06:57 [INFO] - File:[headertokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 13:06:57 [INFO] - File:[jwt.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 13:06:57 [INFO] - File:[logger.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 13:06:57 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 13:06:57 [INFO] - File:[poweredbyheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 13:06:57 [INFO] - File:[recover.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 13:06:57 [INFO] - File:[requestid.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 13:06:57 [INFO] - File:[requesturiblacklistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 13:06:57 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 13:06:57 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:57 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:57 [INFO] --------------------------- +2021-11-19 13:06:57 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 13:06:57 [INFO] - File:[responsetime.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:57 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:57 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 13:06:58 [INFO] - File:[responsewriter.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 13:06:58 [INFO] - File:[serverheader.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 13:06:58 [INFO] - File:[sessionid.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 13:06:58 [INFO] - File:[skip.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 13:06:58 [INFO] - File:[skipper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 13:06:58 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 13:06:58 [INFO] - File:[tokenauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 13:06:58 [INFO] - File:[tokenprovider.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 13:06:58 [INFO] - File:[publisher.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 13:06:58 [INFO] - File:[stream.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 13:06:58 [INFO] - File:[subscriber.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 13:06:58 [INFO] - File:[middleware.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/option.go] +2021-11-19 13:06:58 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:58 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:58 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 13:06:58 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:58 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:58 [INFO] --------------------------- +2021-11-19 13:06:58 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 13:06:59 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 13:06:59 [INFO] - File:[collection.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 13:06:59 [INFO] - File:[entity.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 13:06:59 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 13:06:59 [INFO] - File:[utils.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 13:06:59 [INFO] - File:[persistor.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/server.go] +2021-11-19 13:06:59 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 13:06:59 [INFO] - File:[server_test.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/service.go] +2021-11-19 13:06:59 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 13:06:59 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 13:06:59 [INFO] - File:[servicehttpprometheus.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 13:06:59 [INFO] - File:[servicehttpviper.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 13:06:59 [INFO] - File:[servicehttpzap.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 13:06:59 [INFO] - File:[super-linter.log] was linted with [editorconfig-checker] successfully +2021-11-19 13:06:59 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:06:59 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 13:06:59 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:06:59 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:06:59 [INFO] --------------------------- +2021-11-19 13:06:59 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 13:07:00 [INFO] - File:[error.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 13:07:00 [INFO] - File:[meter.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 13:07:00 [INFO] - File:[span.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 13:07:00 [INFO] - File:[telemetry.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 13:07:00 [INFO] - File:[client.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 13:07:00 [INFO] - File:[log.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 13:07:00 [INFO] - File:[option.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 13:07:00 [INFO] - File:[server.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 13:07:00 [INFO] - File:[service.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 13:07:00 [INFO] - File:[servicehttp.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 13:07:00 [INFO] - File:[basicauth.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 13:07:00 [INFO] - File:[errors.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 13:07:00 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:00 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: editorconfig +2021-11-19 13:07:00 [INFO] --------------------------- +2021-11-19 13:07:00 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 13:07:00 [INFO] - File:[request.go] was linted with [editorconfig-checker] successfully +2021-11-19 13:07:00 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:00 [DEBUG] Running linter for the ENV language... +2021-11-19 13:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_ENV... +2021-11-19 13:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:00 [DEBUG] Setting LINTER_NAME to dotenv-linter... +2021-11-19 13:07:00 [DEBUG] Setting LINTER_COMMAND to dotenv-linter... +2021-11-19 13:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_ENV... +2021-11-19 13:07:00 [DEBUG] FILE_ARRAY_ENV file array contents:  +2021-11-19 13:07:00 [DEBUG] Invoking dotenv-linter linter. TEST_CASE_RUN: false +2021-11-19 13:07:00 [DEBUG] - No files found in changeset to lint for language:[ENV] +2021-11-19 13:07:00 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:00 [DEBUG] Running linter for the GITHUB_ACTIONS language... +2021-11-19 13:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITHUB_ACTIONS... +2021-11-19 13:07:00 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:00 [DEBUG] Setting LINTER_NAME to actionlint... +2021-11-19 13:07:00 [DEBUG] Setting LINTER_COMMAND to actionlint -config-file /action/lib/.automation/actionlint.yml... +2021-11-19 13:07:00 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITHUB_ACTIONS... +2021-11-19 13:07:00 [DEBUG] FILE_ARRAY_GITHUB_ACTIONS file array contents: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:00 [DEBUG] Invoking actionlint linter. TEST_CASE_RUN: false +2021-11-19 13:07:00 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:00 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:07:00 [INFO]  +2021-11-19 13:07:00 [INFO] ---------------------------------------------- +2021-11-19 13:07:00 [INFO] ---------------------------------------------- +2021-11-19 13:07:00 [DEBUG] Running LintCodebase. FILE_TYPE: GITHUB_ACTIONS. Linter name: actionlint, linter command: actionlint -config-file /action/lib/.automation/actionlint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:01 [INFO] Linting [GITHUB_ACTIONS] files... +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: github_actions +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:07:01 [INFO] - File:[checks.yml] was linted with [actionlint] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Running linter for the GITLEAKS language... +2021-11-19 13:07:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GITLEAKS... +2021-11-19 13:07:01 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:01 [DEBUG] Setting LINTER_NAME to gitleaks... +2021-11-19 13:07:01 [DEBUG] Setting LINTER_COMMAND to gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p... +2021-11-19 13:07:01 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GITLEAKS... +2021-11-19 13:07:01 [DEBUG] FILE_ARRAY_GITLEAKS file array contents: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:07:01 [DEBUG] Invoking gitleaks linter. TEST_CASE_RUN: false +2021-11-19 13:07:01 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:07:01 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:07:01 [INFO]  +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [DEBUG] Running LintCodebase. FILE_TYPE: GITLEAKS. Linter name: gitleaks, linter command: gitleaks -q -c /action/lib/.automation/.gitleaks.toml --no-git -p, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.editorconfig /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.gitignore /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml /tmp/lint/LICENSE /tmp/lint/Makefile /tmp/lint/README.md /tmp/lint/closer.go /tmp/lint/config/config.go /tmp/lint/env/env.go /tmp/lint/errors/errors.go /tmp/lint/example/config/main.go /tmp/lint/example/errors/main.go /tmp/lint/example/go.mod /tmp/lint/example/go.sum /tmp/lint/example/middlewares/basicauth/main.go /tmp/lint/example/middlewares/cors/main.go /tmp/lint/example/middlewares/jwtfromcookie/main.go /tmp/lint/example/middlewares/jwtfromtoken/main.go /tmp/lint/example/middlewares/logger/main.go /tmp/lint/example/middlewares/recover/main.go /tmp/lint/example/middlewares/requestid/main.go /tmp/lint/example/middlewares/responsetime/main.go /tmp/lint/example/middlewares/sessionid/main.go /tmp/lint/example/middlewares/skip/main.go /tmp/lint/example/middlewares/telemetry/main.go /tmp/lint/example/middlewares/tokenauthfromcookie/main.go /tmp/lint/example/middlewares/tokenauthfromheader/main.go /tmp/lint/example/persistence/mongo/main.go /tmp/lint/example/persistence/mongo/repository/dummy.go /tmp/lint/example/persistence/mongo/store/codec.go /tmp/lint/example/persistence/mongo/store/datetime.go /tmp/lint/example/persistence/mongo/store/dummy.go /tmp/lint/example/persistence/mongo/store/entity.go /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go /tmp/lint/example/persistence/mongo/store/entitywithversions.go /tmp/lint/example/persistence/postgres/main.go /tmp/lint/example/persistence/postgres/repository/dummy.go /tmp/lint/example/services/main.go /tmp/lint/example/stream/jetstream/main.go /tmp/lint/example/stream/jetstreamraw/main.go /tmp/lint/example/telemetry/main.go /tmp/lint/go.mod /tmp/lint/go.sum /tmp/lint/jwt/jwt.go /tmp/lint/jwt/jwtclaims.go /tmp/lint/jwt/jwtkey.go /tmp/lint/jwt/keyfunc.go /tmp/lint/ldflags.go /tmp/lint/log/configure.go /tmp/lint/log/fields.go /tmp/lint/log/fields_error.go /tmp/lint/log/fields_http.go /tmp/lint/log/fields_messaging.go /tmp/lint/log/fields_net.go /tmp/lint/log/fields_service.go /tmp/lint/log/fields_trace.go /tmp/lint/log/log.go /tmp/lint/log/with.go /tmp/lint/metrics/metrics.go /tmp/lint/metrics/metrics_http.go /tmp/lint/net/gotsrpc/decode.go /tmp/lint/net/gotsrpc/errors.go /tmp/lint/net/http/cookie/cookie.go /tmp/lint/net/http/cookie/domainprovider.go /tmp/lint/net/http/cookie/timeprovider.go /tmp/lint/net/http/header.go /tmp/lint/net/http/headervalues.go /tmp/lint/net/http/middleware/basicauth.go /tmp/lint/net/http/middleware/cookietokenprovider.go /tmp/lint/net/http/middleware/cors.go /tmp/lint/net/http/middleware/headertokenprovider.go /tmp/lint/net/http/middleware/jwt.go /tmp/lint/net/http/middleware/logger.go /tmp/lint/net/http/middleware/middleware.go /tmp/lint/net/http/middleware/poweredbyheader.go /tmp/lint/net/http/middleware/recover.go /tmp/lint/net/http/middleware/requestid.go /tmp/lint/net/http/middleware/requesturiblacklistskipper.go /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go /tmp/lint/net/http/middleware/responsetime.go /tmp/lint/net/http/middleware/responsewriter.go /tmp/lint/net/http/middleware/serverheader.go /tmp/lint/net/http/middleware/sessionid.go /tmp/lint/net/http/middleware/skip.go /tmp/lint/net/http/middleware/skipper.go /tmp/lint/net/http/middleware/telemetry.go /tmp/lint/net/http/middleware/tokenauth.go /tmp/lint/net/http/middleware/tokenprovider.go /tmp/lint/net/stream/jetstream/publisher.go /tmp/lint/net/stream/jetstream/stream.go /tmp/lint/net/stream/jetstream/subscriber.go /tmp/lint/net/stream/middleware.go /tmp/lint/option.go /tmp/lint/persistence/error.go /tmp/lint/persistence/mongo/collection.go /tmp/lint/persistence/mongo/entity.go /tmp/lint/persistence/mongo/persistor.go /tmp/lint/persistence/mongo/utils.go /tmp/lint/persistence/postgres/persistor.go /tmp/lint/server.go /tmp/lint/server_test.go /tmp/lint/service.go /tmp/lint/servicehttp.go /tmp/lint/servicehttpprometheus.go /tmp/lint/servicehttpviper.go /tmp/lint/servicehttpzap.go /tmp/lint/super-linter.log /tmp/lint/telemetry/error.go /tmp/lint/telemetry/meter.go /tmp/lint/telemetry/span.go /tmp/lint/telemetry/telemetry.go /tmp/lint/test/client.go /tmp/lint/test/log.go /tmp/lint/test/option.go /tmp/lint/test/server.go /tmp/lint/test/service.go /tmp/lint/test/servicehttp.go /tmp/lint/utils/net/http/basicauth.go /tmp/lint/utils/net/http/errors.go /tmp/lint/utils/net/http/request.go +2021-11-19 13:07:01 [INFO] Linting [GITLEAKS] files... +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [INFO] ---------------------------------------------- +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.editorconfig +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (.editorconfig) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.editorconfig, FILE_NAME: .editorconfig, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.editorconfig] +2021-11-19 13:07:01 [INFO] - File:[.editorconfig] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:07:01 [INFO] - File:[dependabot.yml] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:07:01 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:07:01 [INFO] - File:[checks.yml] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.gitignore +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (.gitignore) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.gitignore, FILE_NAME: .gitignore, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.gitignore] +2021-11-19 13:07:01 [INFO] - File:[.gitignore] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:07:01 [INFO] - File:[.golangci.yml] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:07:01 [INFO] - File:[.prettierrc.yml] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/LICENSE +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (LICENSE) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/LICENSE, FILE_NAME: LICENSE, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/LICENSE] +2021-11-19 13:07:01 [INFO] - File:[LICENSE] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/Makefile +2021-11-19 13:07:01 [DEBUG] FILE_STATUS (Makefile) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:01 [DEBUG] File: /tmp/lint/Makefile, FILE_NAME: Makefile, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:01 [INFO] --------------------------- +2021-11-19 13:07:01 [INFO] File:[/tmp/lint/Makefile] +2021-11-19 13:07:01 [INFO] - File:[Makefile] was linted with [gitleaks] successfully +2021-11-19 13:07:01 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:01 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:07:02 [INFO] - File:[README.md] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/closer.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (closer.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/closer.go, FILE_NAME: closer.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/closer.go] +2021-11-19 13:07:02 [INFO] - File:[closer.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/config/config.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (config.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/config/config.go, FILE_NAME: config.go, DIR_NAME:/tmp/lint/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/config/config.go] +2021-11-19 13:07:02 [INFO] - File:[config.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/env/env.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (env.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/env/env.go, FILE_NAME: env.go, DIR_NAME:/tmp/lint/env, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/env/env.go] +2021-11-19 13:07:02 [INFO] - File:[env.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/errors/errors.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/errors/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/errors/errors.go] +2021-11-19 13:07:02 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/config/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/config/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/config, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/config/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/errors/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/errors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/errors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/errors/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/go.mod +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/go.mod] +2021-11-19 13:07:02 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/go.sum +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint/example, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/go.sum] +2021-11-19 13:07:02 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/basicauth/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/middlewares/basicauth/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/basicauth, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/middlewares/basicauth/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/cors/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/middlewares/cors/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/cors, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/middlewares/cors/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromcookie/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/middlewares/jwtfromcookie/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:02 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:02 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/jwtfromtoken/main.go +2021-11-19 13:07:02 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:02 [DEBUG] File: /tmp/lint/example/middlewares/jwtfromtoken/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/jwtfromtoken, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:02 [INFO] --------------------------- +2021-11-19 13:07:02 [INFO] File:[/tmp/lint/example/middlewares/jwtfromtoken/main.go] +2021-11-19 13:07:02 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/logger/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/logger/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/logger, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/logger/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/recover/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/recover/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/recover, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/recover/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/requestid/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/requestid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/requestid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/requestid/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/responsetime/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/responsetime/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/responsetime, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/responsetime/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/sessionid/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/sessionid/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/sessionid, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/sessionid/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/skip/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/skip/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/skip, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/skip/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/telemetry/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/telemetry/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromcookie/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromcookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromcookie/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/middlewares/tokenauthfromheader/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/middlewares/tokenauthfromheader/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/middlewares/tokenauthfromheader, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/middlewares/tokenauthfromheader/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/main.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/persistence/mongo/main.go] +2021-11-19 13:07:03 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/repository/dummy.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/persistence/mongo/repository/dummy.go] +2021-11-19 13:07:03 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/codec.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (codec.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/codec.go, FILE_NAME: codec.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/persistence/mongo/store/codec.go] +2021-11-19 13:07:03 [INFO] - File:[codec.go] was linted with [gitleaks] successfully +2021-11-19 13:07:03 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:03 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/datetime.go +2021-11-19 13:07:03 [DEBUG] FILE_STATUS (datetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:03 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/datetime.go, FILE_NAME: datetime.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:03 [INFO] --------------------------- +2021-11-19 13:07:03 [INFO] File:[/tmp/lint/example/persistence/mongo/store/datetime.go] +2021-11-19 13:07:03 [INFO] - File:[datetime.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/dummy.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/dummy.go] +2021-11-19 13:07:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entity.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entity.go] +2021-11-19 13:07:04 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (entitywithtimestamps.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go, FILE_NAME: entitywithtimestamps.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithtimestamps.go] +2021-11-19 13:07:04 [INFO] - File:[entitywithtimestamps.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/mongo/store/entitywithversions.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (entitywithversions.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/mongo/store/entitywithversions.go, FILE_NAME: entitywithversions.go, DIR_NAME:/tmp/lint/example/persistence/mongo/store, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/mongo/store/entitywithversions.go] +2021-11-19 13:07:04 [INFO] - File:[entitywithversions.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/main.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/postgres/main.go] +2021-11-19 13:07:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/persistence/postgres/repository/dummy.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (dummy.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/persistence/postgres/repository/dummy.go, FILE_NAME: dummy.go, DIR_NAME:/tmp/lint/example/persistence/postgres/repository, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/persistence/postgres/repository/dummy.go] +2021-11-19 13:07:04 [INFO] - File:[dummy.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/services/main.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/services/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/services, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/services/main.go] +2021-11-19 13:07:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstream/main.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/stream/jetstream/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/stream/jetstream/main.go] +2021-11-19 13:07:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/stream/jetstreamraw/main.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/stream/jetstreamraw/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/stream/jetstreamraw, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/stream/jetstreamraw/main.go] +2021-11-19 13:07:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/example/telemetry/main.go +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (main.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/example/telemetry/main.go, FILE_NAME: main.go, DIR_NAME:/tmp/lint/example/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/example/telemetry/main.go] +2021-11-19 13:07:04 [INFO] - File:[main.go] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/go.mod +2021-11-19 13:07:04 [DEBUG] FILE_STATUS (go.mod) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:04 [DEBUG] File: /tmp/lint/go.mod, FILE_NAME: go.mod, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:04 [INFO] --------------------------- +2021-11-19 13:07:04 [INFO] File:[/tmp/lint/go.mod] +2021-11-19 13:07:04 [INFO] - File:[go.mod] was linted with [gitleaks] successfully +2021-11-19 13:07:04 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:04 [DEBUG] Linting FILE: /tmp/lint/go.sum +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (go.sum) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/go.sum, FILE_NAME: go.sum, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/go.sum] +2021-11-19 13:07:05 [INFO] - File:[go.sum] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwt.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/jwt/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/jwt/jwt.go] +2021-11-19 13:07:05 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtclaims.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (jwtclaims.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/jwt/jwtclaims.go, FILE_NAME: jwtclaims.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/jwt/jwtclaims.go] +2021-11-19 13:07:05 [INFO] - File:[jwtclaims.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/jwt/jwtkey.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (jwtkey.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/jwt/jwtkey.go, FILE_NAME: jwtkey.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/jwt/jwtkey.go] +2021-11-19 13:07:05 [INFO] - File:[jwtkey.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/jwt/keyfunc.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (keyfunc.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/jwt/keyfunc.go, FILE_NAME: keyfunc.go, DIR_NAME:/tmp/lint/jwt, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/jwt/keyfunc.go] +2021-11-19 13:07:05 [INFO] - File:[keyfunc.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/ldflags.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (ldflags.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/ldflags.go, FILE_NAME: ldflags.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/ldflags.go] +2021-11-19 13:07:05 [INFO] - File:[ldflags.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/configure.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (configure.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/configure.go, FILE_NAME: configure.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/configure.go] +2021-11-19 13:07:05 [INFO] - File:[configure.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (fields.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields.go, FILE_NAME: fields.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields.go] +2021-11-19 13:07:05 [INFO] - File:[fields.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_error.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields_error.go, FILE_NAME: fields_error.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields_error.go] +2021-11-19 13:07:05 [INFO] - File:[fields_error.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_http.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields_http.go, FILE_NAME: fields_http.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields_http.go] +2021-11-19 13:07:05 [INFO] - File:[fields_http.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_messaging.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (messaging.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields_messaging.go, FILE_NAME: fields_messaging.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields_messaging.go] +2021-11-19 13:07:05 [INFO] - File:[fields_messaging.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_net.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (net.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields_net.go, FILE_NAME: fields_net.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields_net.go] +2021-11-19 13:07:05 [INFO] - File:[fields_net.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_service.go +2021-11-19 13:07:05 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:05 [DEBUG] File: /tmp/lint/log/fields_service.go, FILE_NAME: fields_service.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:05 [INFO] --------------------------- +2021-11-19 13:07:05 [INFO] File:[/tmp/lint/log/fields_service.go] +2021-11-19 13:07:05 [INFO] - File:[fields_service.go] was linted with [gitleaks] successfully +2021-11-19 13:07:05 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:05 [DEBUG] Linting FILE: /tmp/lint/log/fields_trace.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (trace.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/log/fields_trace.go, FILE_NAME: fields_trace.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/log/fields_trace.go] +2021-11-19 13:07:06 [INFO] - File:[fields_trace.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/log/log.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/log/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/log/log.go] +2021-11-19 13:07:06 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/log/with.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (with.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/log/with.go, FILE_NAME: with.go, DIR_NAME:/tmp/lint/log, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/log/with.go] +2021-11-19 13:07:06 [INFO] - File:[with.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (metrics.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/metrics/metrics.go, FILE_NAME: metrics.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/metrics/metrics.go] +2021-11-19 13:07:06 [INFO] - File:[metrics.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/metrics/metrics_http.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (http.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/metrics/metrics_http.go, FILE_NAME: metrics_http.go, DIR_NAME:/tmp/lint/metrics, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/metrics/metrics_http.go] +2021-11-19 13:07:06 [INFO] - File:[metrics_http.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/decode.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (decode.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/gotsrpc/decode.go, FILE_NAME: decode.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/gotsrpc/decode.go] +2021-11-19 13:07:06 [INFO] - File:[decode.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/gotsrpc/errors.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/gotsrpc/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/net/gotsrpc, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/gotsrpc/errors.go] +2021-11-19 13:07:06 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/cookie.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (cookie.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/cookie/cookie.go, FILE_NAME: cookie.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/cookie/cookie.go] +2021-11-19 13:07:06 [INFO] - File:[cookie.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/domainprovider.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (domainprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/cookie/domainprovider.go, FILE_NAME: domainprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/cookie/domainprovider.go] +2021-11-19 13:07:06 [INFO] - File:[domainprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/cookie/timeprovider.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (timeprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/cookie/timeprovider.go, FILE_NAME: timeprovider.go, DIR_NAME:/tmp/lint/net/http/cookie, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/cookie/timeprovider.go] +2021-11-19 13:07:06 [INFO] - File:[timeprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/header.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (header.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/header.go, FILE_NAME: header.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/header.go] +2021-11-19 13:07:06 [INFO] - File:[header.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/headervalues.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (headervalues.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/headervalues.go, FILE_NAME: headervalues.go, DIR_NAME:/tmp/lint/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/headervalues.go] +2021-11-19 13:07:06 [INFO] - File:[headervalues.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/basicauth.go +2021-11-19 13:07:06 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:06 [DEBUG] File: /tmp/lint/net/http/middleware/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:06 [INFO] --------------------------- +2021-11-19 13:07:06 [INFO] File:[/tmp/lint/net/http/middleware/basicauth.go] +2021-11-19 13:07:06 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 13:07:06 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:06 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cookietokenprovider.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (cookietokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/cookietokenprovider.go, FILE_NAME: cookietokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/cookietokenprovider.go] +2021-11-19 13:07:07 [INFO] - File:[cookietokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/cors.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (cors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/cors.go, FILE_NAME: cors.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/cors.go] +2021-11-19 13:07:07 [INFO] - File:[cors.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/headertokenprovider.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (headertokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/headertokenprovider.go, FILE_NAME: headertokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/headertokenprovider.go] +2021-11-19 13:07:07 [INFO] - File:[headertokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/jwt.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (jwt.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/jwt.go, FILE_NAME: jwt.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/jwt.go] +2021-11-19 13:07:07 [INFO] - File:[jwt.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/logger.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (logger.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/logger.go, FILE_NAME: logger.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/logger.go] +2021-11-19 13:07:07 [INFO] - File:[logger.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/middleware.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/middleware.go] +2021-11-19 13:07:07 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/poweredbyheader.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (poweredbyheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/poweredbyheader.go, FILE_NAME: poweredbyheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/poweredbyheader.go] +2021-11-19 13:07:07 [INFO] - File:[poweredbyheader.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/recover.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (recover.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/recover.go, FILE_NAME: recover.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/recover.go] +2021-11-19 13:07:07 [INFO] - File:[recover.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requestid.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (requestid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/requestid.go, FILE_NAME: requestid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/requestid.go] +2021-11-19 13:07:07 [INFO] - File:[requestid.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (requesturiblacklistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiblacklistskipper.go, FILE_NAME: requesturiblacklistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/requesturiblacklistskipper.go] +2021-11-19 13:07:07 [INFO] - File:[requesturiblacklistskipper.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (requesturiwhitelistskipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/requesturiwhitelistskipper.go, FILE_NAME: requesturiwhitelistskipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/requesturiwhitelistskipper.go] +2021-11-19 13:07:07 [INFO] - File:[requesturiwhitelistskipper.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsetime.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (responsetime.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/responsetime.go, FILE_NAME: responsetime.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/responsetime.go] +2021-11-19 13:07:07 [INFO] - File:[responsetime.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/responsewriter.go +2021-11-19 13:07:07 [DEBUG] FILE_STATUS (responsewriter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:07 [DEBUG] File: /tmp/lint/net/http/middleware/responsewriter.go, FILE_NAME: responsewriter.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:07 [INFO] --------------------------- +2021-11-19 13:07:07 [INFO] File:[/tmp/lint/net/http/middleware/responsewriter.go] +2021-11-19 13:07:07 [INFO] - File:[responsewriter.go] was linted with [gitleaks] successfully +2021-11-19 13:07:07 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:07 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/serverheader.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (serverheader.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/serverheader.go, FILE_NAME: serverheader.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/serverheader.go] +2021-11-19 13:07:08 [INFO] - File:[serverheader.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/sessionid.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (sessionid.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/sessionid.go, FILE_NAME: sessionid.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/sessionid.go] +2021-11-19 13:07:08 [INFO] - File:[sessionid.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skip.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (skip.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/skip.go, FILE_NAME: skip.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/skip.go] +2021-11-19 13:07:08 [INFO] - File:[skip.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/skipper.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (skipper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/skipper.go, FILE_NAME: skipper.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/skipper.go] +2021-11-19 13:07:08 [INFO] - File:[skipper.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/telemetry.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/telemetry.go] +2021-11-19 13:07:08 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenauth.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (tokenauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/tokenauth.go, FILE_NAME: tokenauth.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/tokenauth.go] +2021-11-19 13:07:08 [INFO] - File:[tokenauth.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/http/middleware/tokenprovider.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (tokenprovider.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/http/middleware/tokenprovider.go, FILE_NAME: tokenprovider.go, DIR_NAME:/tmp/lint/net/http/middleware, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/http/middleware/tokenprovider.go] +2021-11-19 13:07:08 [INFO] - File:[tokenprovider.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/publisher.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (publisher.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/publisher.go, FILE_NAME: publisher.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/stream/jetstream/publisher.go] +2021-11-19 13:07:08 [INFO] - File:[publisher.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/stream.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (stream.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/stream.go, FILE_NAME: stream.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/stream/jetstream/stream.go] +2021-11-19 13:07:08 [INFO] - File:[stream.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/jetstream/subscriber.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (subscriber.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/stream/jetstream/subscriber.go, FILE_NAME: subscriber.go, DIR_NAME:/tmp/lint/net/stream/jetstream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/stream/jetstream/subscriber.go] +2021-11-19 13:07:08 [INFO] - File:[subscriber.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/net/stream/middleware.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (middleware.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/net/stream/middleware.go, FILE_NAME: middleware.go, DIR_NAME:/tmp/lint/net/stream, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/net/stream/middleware.go] +2021-11-19 13:07:08 [INFO] - File:[middleware.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/option.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/option.go] +2021-11-19 13:07:08 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/persistence/error.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/persistence/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/persistence, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/persistence/error.go] +2021-11-19 13:07:08 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 13:07:08 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:08 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/collection.go +2021-11-19 13:07:08 [DEBUG] FILE_STATUS (collection.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:08 [DEBUG] File: /tmp/lint/persistence/mongo/collection.go, FILE_NAME: collection.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:08 [INFO] --------------------------- +2021-11-19 13:07:08 [INFO] File:[/tmp/lint/persistence/mongo/collection.go] +2021-11-19 13:07:09 [INFO] - File:[collection.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/entity.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (entity.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/persistence/mongo/entity.go, FILE_NAME: entity.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/persistence/mongo/entity.go] +2021-11-19 13:07:09 [INFO] - File:[entity.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/persistor.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/persistence/mongo/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/persistence/mongo/persistor.go] +2021-11-19 13:07:09 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/persistence/mongo/utils.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (utils.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/persistence/mongo/utils.go, FILE_NAME: utils.go, DIR_NAME:/tmp/lint/persistence/mongo, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/persistence/mongo/utils.go] +2021-11-19 13:07:09 [INFO] - File:[utils.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/persistence/postgres/persistor.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (persistor.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/persistence/postgres/persistor.go, FILE_NAME: persistor.go, DIR_NAME:/tmp/lint/persistence/postgres, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/persistence/postgres/persistor.go] +2021-11-19 13:07:09 [INFO] - File:[persistor.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/server.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/server.go] +2021-11-19 13:07:09 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/server_test.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (test.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/server_test.go, FILE_NAME: server_test.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/server_test.go] +2021-11-19 13:07:09 [INFO] - File:[server_test.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/service.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/service.go] +2021-11-19 13:07:09 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/servicehttp.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/servicehttp.go] +2021-11-19 13:07:09 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpprometheus.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (servicehttpprometheus.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/servicehttpprometheus.go, FILE_NAME: servicehttpprometheus.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/servicehttpprometheus.go] +2021-11-19 13:07:09 [INFO] - File:[servicehttpprometheus.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpviper.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (servicehttpviper.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/servicehttpviper.go, FILE_NAME: servicehttpviper.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/servicehttpviper.go] +2021-11-19 13:07:09 [INFO] - File:[servicehttpviper.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/servicehttpzap.go +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (servicehttpzap.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/servicehttpzap.go, FILE_NAME: servicehttpzap.go, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/servicehttpzap.go] +2021-11-19 13:07:09 [INFO] - File:[servicehttpzap.go] was linted with [gitleaks] successfully +2021-11-19 13:07:09 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:09 [DEBUG] Linting FILE: /tmp/lint/super-linter.log +2021-11-19 13:07:09 [DEBUG] FILE_STATUS (super-linter.log) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:09 [DEBUG] File: /tmp/lint/super-linter.log, FILE_NAME: super-linter.log, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:09 [INFO] --------------------------- +2021-11-19 13:07:09 [INFO] File:[/tmp/lint/super-linter.log] +2021-11-19 13:07:15 [INFO] - File:[super-linter.log] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/error.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (error.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/telemetry/error.go, FILE_NAME: error.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/telemetry/error.go] +2021-11-19 13:07:15 [INFO] - File:[error.go] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/meter.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (meter.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/telemetry/meter.go, FILE_NAME: meter.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/telemetry/meter.go] +2021-11-19 13:07:15 [INFO] - File:[meter.go] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/span.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (span.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/telemetry/span.go, FILE_NAME: span.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/telemetry/span.go] +2021-11-19 13:07:15 [INFO] - File:[span.go] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/telemetry/telemetry.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (telemetry.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/telemetry/telemetry.go, FILE_NAME: telemetry.go, DIR_NAME:/tmp/lint/telemetry, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/telemetry/telemetry.go] +2021-11-19 13:07:15 [INFO] - File:[telemetry.go] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/test/client.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (client.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/test/client.go, FILE_NAME: client.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/test/client.go] +2021-11-19 13:07:15 [INFO] - File:[client.go] was linted with [gitleaks] successfully +2021-11-19 13:07:15 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:15 [DEBUG] Linting FILE: /tmp/lint/test/log.go +2021-11-19 13:07:15 [DEBUG] FILE_STATUS (log.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:15 [DEBUG] File: /tmp/lint/test/log.go, FILE_NAME: log.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:15 [INFO] --------------------------- +2021-11-19 13:07:15 [INFO] File:[/tmp/lint/test/log.go] +2021-11-19 13:07:15 [INFO] - File:[log.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/test/option.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (option.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/test/option.go, FILE_NAME: option.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/test/option.go] +2021-11-19 13:07:16 [INFO] - File:[option.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/test/server.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (server.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/test/server.go, FILE_NAME: server.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/test/server.go] +2021-11-19 13:07:16 [INFO] - File:[server.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/test/service.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (service.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/test/service.go, FILE_NAME: service.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/test/service.go] +2021-11-19 13:07:16 [INFO] - File:[service.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/test/servicehttp.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (servicehttp.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/test/servicehttp.go, FILE_NAME: servicehttp.go, DIR_NAME:/tmp/lint/test, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/test/servicehttp.go] +2021-11-19 13:07:16 [INFO] - File:[servicehttp.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/basicauth.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (basicauth.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/utils/net/http/basicauth.go, FILE_NAME: basicauth.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/utils/net/http/basicauth.go] +2021-11-19 13:07:16 [INFO] - File:[basicauth.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/errors.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (errors.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/utils/net/http/errors.go, FILE_NAME: errors.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/utils/net/http/errors.go] +2021-11-19 13:07:16 [INFO] - File:[errors.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Linting FILE: /tmp/lint/utils/net/http/request.go +2021-11-19 13:07:16 [DEBUG] FILE_STATUS (request.go) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:16 [DEBUG] File: /tmp/lint/utils/net/http/request.go, FILE_NAME: request.go, DIR_NAME:/tmp/lint/utils/net/http, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: gitleaks +2021-11-19 13:07:16 [INFO] --------------------------- +2021-11-19 13:07:16 [INFO] File:[/tmp/lint/utils/net/http/request.go] +2021-11-19 13:07:16 [INFO] - File:[request.go] was linted with [gitleaks] successfully +2021-11-19 13:07:16 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:16 [DEBUG] Running linter for the GHERKIN language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GHERKIN... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to gherkin-lint... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to gherkin-lint -c /action/lib/.automation/.gherkin-lintrc... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GHERKIN... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_GHERKIN file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking gherkin-lint linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[GHERKIN] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the GO language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GO... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:07:16 [DEBUG] Running linter for the GOOGLE_JAVA_FORMAT language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GOOGLE_JAVA_FORMAT... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to google-java-format... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/google-java-format... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GOOGLE_JAVA_FORMAT... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_GOOGLE_JAVA_FORMAT file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking google-java-format linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[GOOGLE_JAVA_FORMAT] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the GROOVY language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_GROOVY... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to npm-groovy-lint... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to npm-groovy-lint -c /action/lib/.automation/.groovylintrc.json --failon warning... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_GROOVY... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_GROOVY file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking npm-groovy-lint linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[GROOVY] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the HTML language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_HTML... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to htmlhint... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to htmlhint --config /action/lib/.automation/.htmlhintrc... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_HTML... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_HTML file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking htmlhint linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[HTML] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the JAVA language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVA... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to checkstyle... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to java -jar /usr/bin/checkstyle -c /action/lib/.automation/sun_checks.xml... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVA... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_JAVA file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking checkstyle linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[JAVA] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the JAVASCRIPT_ES language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_ES... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_ES... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_JAVASCRIPT_ES file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_ES] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the JAVASCRIPT_STANDARD language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JAVASCRIPT_STANDARD... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to standard --env browser --env es6 --env jest... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JAVASCRIPT_STANDARD... +2021-11-19 13:07:16 [DEBUG] FILE_ARRAY_JAVASCRIPT_STANDARD file array contents:  +2021-11-19 13:07:16 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 13:07:16 [DEBUG] - No files found in changeset to lint for language:[JAVASCRIPT_STANDARD] +2021-11-19 13:07:16 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:16 [DEBUG] Running linter for the JSCPD language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSCPD... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:07:16 [DEBUG] Running linter for the JSON language... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSON... +2021-11-19 13:07:16 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:16 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json... +2021-11-19 13:07:16 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSON... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_JSON file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[JSON] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the JSONC language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSONC... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml --ext .json5,.jsonc... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSONC... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_JSONC file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[JSONC] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the JSX language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_JSX... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_JSX... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_JSX file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[JSX] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the KUBERNETES_KUBEVAL language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KUBERNETES_KUBEVAL... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to kubeval... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to kubeval --strict... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KUBERNETES_KUBEVAL... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_KUBERNETES_KUBEVAL file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking kubeval linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[KUBERNETES_KUBEVAL] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the KOTLIN language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_KOTLIN... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to ktlint... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to ktlint... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_KOTLIN... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_KOTLIN file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking ktlint linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[KOTLIN] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the LATEX language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LATEX... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to chktex... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to chktex -q -l /action/lib/.automation/.chktexrc... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LATEX... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_LATEX file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking chktex linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[LATEX] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the LUA language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_LUA... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to lua... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to luacheck --config /action/lib/.automation/.luacheckrc... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_LUA... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_LUA file array contents:  +2021-11-19 13:07:17 [DEBUG] Invoking lua linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] - No files found in changeset to lint for language:[LUA] +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:17 [DEBUG] Running linter for the MARKDOWN language... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_MARKDOWN... +2021-11-19 13:07:17 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_NAME to markdownlint... +2021-11-19 13:07:17 [DEBUG] Setting LINTER_COMMAND to markdownlint -c /action/lib/.automation/.markdown-lint.yml... +2021-11-19 13:07:17 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_MARKDOWN... +2021-11-19 13:07:17 [DEBUG] FILE_ARRAY_MARKDOWN file array contents: /tmp/lint/README.md +2021-11-19 13:07:17 [DEBUG] Invoking markdownlint linter. TEST_CASE_RUN: false +2021-11-19 13:07:17 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 13:07:17 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:07:17 [INFO]  +2021-11-19 13:07:17 [INFO] ---------------------------------------------- +2021-11-19 13:07:17 [INFO] ---------------------------------------------- +2021-11-19 13:07:17 [DEBUG] Running LintCodebase. FILE_TYPE: MARKDOWN. Linter name: markdownlint, linter command: markdownlint -c /action/lib/.automation/.markdown-lint.yml, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 13:07:17 [INFO] Linting [MARKDOWN] files... +2021-11-19 13:07:17 [INFO] ---------------------------------------------- +2021-11-19 13:07:17 [INFO] ---------------------------------------------- +2021-11-19 13:07:17 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:07:17 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:17 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: markdown +2021-11-19 13:07:17 [INFO] --------------------------- +2021-11-19 13:07:17 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:07:18 [INFO] - File:[README.md] was linted with [markdownlint] successfully +2021-11-19 13:07:18 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:18 [DEBUG] Running linter for the NATURAL_LANGUAGE language... +2021-11-19 13:07:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_NATURAL_LANGUAGE... +2021-11-19 13:07:18 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:18 [DEBUG] Setting LINTER_NAME to textlint... +2021-11-19 13:07:18 [DEBUG] Setting LINTER_COMMAND to textlint -c /action/lib/.automation/.textlintrc... +2021-11-19 13:07:18 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_NATURAL_LANGUAGE... +2021-11-19 13:07:18 [DEBUG] FILE_ARRAY_NATURAL_LANGUAGE file array contents: /tmp/lint/README.md +2021-11-19 13:07:18 [DEBUG] Invoking textlint linter. TEST_CASE_RUN: false +2021-11-19 13:07:18 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/README.md +2021-11-19 13:07:18 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:07:18 [INFO]  +2021-11-19 13:07:18 [INFO] ---------------------------------------------- +2021-11-19 13:07:18 [INFO] ---------------------------------------------- +2021-11-19 13:07:18 [DEBUG] Running LintCodebase. FILE_TYPE: NATURAL_LANGUAGE. Linter name: textlint, linter command: textlint -c /action/lib/.automation/.textlintrc, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/README.md +2021-11-19 13:07:18 [INFO] Linting [NATURAL_LANGUAGE] files... +2021-11-19 13:07:18 [INFO] ---------------------------------------------- +2021-11-19 13:07:18 [INFO] ---------------------------------------------- +2021-11-19 13:07:18 [DEBUG] Linting FILE: /tmp/lint/README.md +2021-11-19 13:07:18 [DEBUG] FILE_STATUS (README.md) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:18 [DEBUG] File: /tmp/lint/README.md, FILE_NAME: README.md, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: natural_language +2021-11-19 13:07:18 [INFO] --------------------------- +2021-11-19 13:07:18 [INFO] File:[/tmp/lint/README.md] +2021-11-19 13:07:19 [INFO] - File:[README.md] was linted with [textlint] successfully +2021-11-19 13:07:19 [DEBUG] Error code: 0. Command output: +------ + +------ +2021-11-19 13:07:19 [DEBUG] Running linter for the OPENAPI language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_OPENAPI... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to spectral... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to spectral lint -r /action/lib/.automation/.openapirc.yml -D... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_OPENAPI... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_OPENAPI file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking spectral linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[OPENAPI] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PERL language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PERL... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to perl... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to perlcritic... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PERL... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PERL file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking perl linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PERL] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PHP_BUILTIN language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_BUILTIN... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to php... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to php -l -c /action/lib/.automation/php.ini... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_BUILTIN... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PHP_BUILTIN file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking php linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PHP_BUILTIN] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PHP_PHPCS language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPCS... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to phpcs... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to phpcs --standard=/action/lib/.automation/phpcs.xml... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPCS... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PHP_PHPCS file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking phpcs linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPCS] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PHP_PHPSTAN language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PHPSTAN... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to phpstan... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to phpstan analyse --no-progress --no-ansi --memory-limit 1G -c /action/lib/.automation/phpstan.neon... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PHPSTAN... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PHP_PHPSTAN file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking phpstan linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PHPSTAN] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PHP_PSALM language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PHP_PSALM... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to psalm... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to psalm --config=/action/lib/.automation/psalm.xml... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PHP_PSALM... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PHP_PSALM file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking psalm linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PHP_PSALM] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the POWERSHELL language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_POWERSHELL... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to pwsh... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to Invoke-ScriptAnalyzer -EnableExit -Settings /action/lib/.automation/.powershell-psscriptanalyzer.psd1 -Path... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_POWERSHELL... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_POWERSHELL file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking pwsh linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[POWERSHELL] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PROTOBUF language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PROTOBUF... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to protolint... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to protolint lint --config_path /action/lib/.automation/.protolintrc.yml... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PROTOBUF... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PROTOBUF file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking protolint linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PROTOBUF] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PYTHON_BLACK language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_BLACK... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to black... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to black --config /action/lib/.automation/.python-black --diff --check... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_BLACK... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PYTHON_BLACK file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking black linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_BLACK] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PYTHON_PYLINT language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_PYLINT... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to pylint... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to pylint --rcfile /action/lib/.automation/.python-lint... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_PYLINT... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PYTHON_PYLINT file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking pylint linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_PYLINT] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PYTHON_FLAKE8 language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_FLAKE8... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to flake8... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to flake8 --config=/action/lib/.automation/.flake8... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_FLAKE8... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PYTHON_FLAKE8 file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking flake8 linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_FLAKE8] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PYTHON_ISORT language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_ISORT... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to isort... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to isort --check --diff --sp /action/lib/.automation/.isort.cfg... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_ISORT... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PYTHON_ISORT file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking isort linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_ISORT] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the PYTHON_MYPY language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_PYTHON_MYPY... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to mypy... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_COMMAND to mypy --config-file /action/lib/.automation/.mypy.ini --install-types --non-interactive... +2021-11-19 13:07:19 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_PYTHON_MYPY... +2021-11-19 13:07:19 [DEBUG] FILE_ARRAY_PYTHON_MYPY file array contents:  +2021-11-19 13:07:19 [DEBUG] Invoking mypy linter. TEST_CASE_RUN: false +2021-11-19 13:07:19 [DEBUG] - No files found in changeset to lint for language:[PYTHON_MYPY] +2021-11-19 13:07:19 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:19 [DEBUG] Running linter for the R language... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_R... +2021-11-19 13:07:19 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:19 [DEBUG] Setting LINTER_NAME to R... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to lintr... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_R... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_R file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking R linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[R] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the RAKU language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RAKU... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to raku... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to raku... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RAKU... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_RAKU file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking raku linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[RAKU] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the RUBY language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUBY... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to rubocop... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to rubocop -c /action/lib/.automation/.ruby-lint.yml --force-exclusion... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUBY... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_RUBY file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking rubocop linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[RUBY] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the RUST_2015 language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2015... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2015... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2015... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_RUST_2015 file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[RUST_2015] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the RUST_2018 language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_2018... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to rustfmt... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to rustfmt --check --edition 2018... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_2018... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_RUST_2018 file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking rustfmt linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[RUST_2018] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the RUST_CLIPPY language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_RUST_CLIPPY... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to clippy... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to clippy... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_RUST_CLIPPY... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_RUST_CLIPPY file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking clippy linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[RUST_CLIPPY] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the SCALAFMT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SCALAFMT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to scalafmt... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to scalafmt --config /action/lib/.automation/.scalafmt.conf --test... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SCALAFMT... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_SCALAFMT file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking scalafmt linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[SCALAFMT] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the SHELL_SHFMT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SHELL_SHFMT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to false... +2021-11-19 13:07:20 [DEBUG] Running linter for the SNAKEMAKE_LINT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_LINT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to snakemake... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to snakemake --lint -s... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_LINT... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_SNAKEMAKE_LINT file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking snakemake linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_LINT] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the SNAKEMAKE_SNAKEFMT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SNAKEMAKE_SNAKEFMT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to snakefmt... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to snakefmt --config /action/lib/.automation/.snakefmt.toml --check --compact-diff... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SNAKEMAKE_SNAKEFMT... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_SNAKEMAKE_SNAKEFMT file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking snakefmt linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[SNAKEMAKE_SNAKEFMT] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the STATES language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_STATES... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to asl-validator... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to asl-validator --json-path... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_STATES... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_STATES file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking asl-validator linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[STATES] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the SQL language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQL... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to sql-lint... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to sql-lint --config /action/lib/.automation/.sql-config.json... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQL... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_SQL file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking sql-lint linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[SQL] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the SQLFLUFF language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_SQLFLUFF... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to sqlfluff... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to sqlfluff lint... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_SQLFLUFF... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_SQLFLUFF file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking sqlfluff linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[SQLFLUFF] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TEKTON language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TEKTON... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to tekton-lint... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to tekton-lint... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TEKTON... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TEKTON file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking tekton-lint linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TEKTON] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TERRAFORM_TFLINT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TFLINT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to tflint... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to tflint -c /action/lib/.automation/.tflint.hcl... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TFLINT... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TERRAFORM_TFLINT file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking tflint linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TFLINT] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TERRAFORM_TERRASCAN language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAFORM_TERRASCAN... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to terrascan... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to terrascan scan -i terraform -t all -c /action/lib/.automation/terrascan.toml -f... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAFORM_TERRASCAN... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TERRAFORM_TERRASCAN file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking terrascan linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TERRAFORM_TERRASCAN] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TERRAGRUNT language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TERRAGRUNT... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to terragrunt... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to terragrunt hclfmt --terragrunt-check --terragrunt-log-level error --terragrunt-hclfmt-file... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TERRAGRUNT... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TERRAGRUNT file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking terragrunt linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TERRAGRUNT] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TSX language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TSX... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TSX... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TSX file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TSX] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TYPESCRIPT_ES language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_ES... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to eslint... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_COMMAND to eslint --no-eslintrc -c /action/lib/.automation/.eslintrc.yml... +2021-11-19 13:07:20 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_ES... +2021-11-19 13:07:20 [DEBUG] FILE_ARRAY_TYPESCRIPT_ES file array contents:  +2021-11-19 13:07:20 [DEBUG] Invoking eslint linter. TEST_CASE_RUN: false +2021-11-19 13:07:20 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_ES] +2021-11-19 13:07:20 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:20 [DEBUG] Running linter for the TYPESCRIPT_STANDARD language... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_TYPESCRIPT_STANDARD... +2021-11-19 13:07:20 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:20 [DEBUG] Setting LINTER_NAME to standard... +2021-11-19 13:07:21 [DEBUG] Setting LINTER_COMMAND to standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --env browser --env es6 --env jest... +2021-11-19 13:07:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_TYPESCRIPT_STANDARD... +2021-11-19 13:07:21 [DEBUG] FILE_ARRAY_TYPESCRIPT_STANDARD file array contents:  +2021-11-19 13:07:21 [DEBUG] Invoking standard linter. TEST_CASE_RUN: false +2021-11-19 13:07:21 [DEBUG] - No files found in changeset to lint for language:[TYPESCRIPT_STANDARD] +2021-11-19 13:07:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:21 [DEBUG] Running linter for the XML language... +2021-11-19 13:07:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_XML... +2021-11-19 13:07:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:21 [DEBUG] Setting LINTER_NAME to xmllint... +2021-11-19 13:07:21 [DEBUG] Setting LINTER_COMMAND to xmllint... +2021-11-19 13:07:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_XML... +2021-11-19 13:07:21 [DEBUG] FILE_ARRAY_XML file array contents:  +2021-11-19 13:07:21 [DEBUG] Invoking xmllint linter. TEST_CASE_RUN: false +2021-11-19 13:07:21 [DEBUG] - No files found in changeset to lint for language:[XML] +2021-11-19 13:07:21 [DEBUG] SKIP_FLAG: 1, list of files to lint:  +2021-11-19 13:07:21 [DEBUG] Running linter for the YAML language... +2021-11-19 13:07:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_NAME to VALIDATE_YAML... +2021-11-19 13:07:21 [DEBUG] Setting VALIDATE_LANGUAGE_VARIABLE_VALUE to true... +2021-11-19 13:07:21 [DEBUG] Setting LINTER_NAME to yamllint... +2021-11-19 13:07:21 [DEBUG] Setting LINTER_COMMAND to yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable... +2021-11-19 13:07:21 [DEBUG] Setting FILE_ARRAY_VARIABLE_NAME to FILE_ARRAY_YAML... +2021-11-19 13:07:21 [DEBUG] FILE_ARRAY_YAML file array contents: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:07:21 [DEBUG] Invoking yamllint linter. TEST_CASE_RUN: false +2021-11-19 13:07:21 [DEBUG] SKIP_FLAG: 0, list of files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:07:21 [DEBUG] Workspace path: /tmp/lint +2021-11-19 13:07:21 [INFO]  +2021-11-19 13:07:21 [INFO] ---------------------------------------------- +2021-11-19 13:07:21 [INFO] ---------------------------------------------- +2021-11-19 13:07:21 [DEBUG] Running LintCodebase. FILE_TYPE: YAML. Linter name: yamllint, linter command: yamllint -c /action/lib/.automation/.yaml-lint.yml -f parsable, TEST_CASE_RUN: false, FILTER_REGEX_INCLUDE: , FILTER_REGEX_EXCLUDE: files to lint: /tmp/lint/.github/dependabot.yml /tmp/lint/.github/linters/.golangci.yml /tmp/lint/.github/workflows/checks.yml /tmp/lint/.golangci.yml /tmp/lint/.prettierrc.yml +2021-11-19 13:07:21 [INFO] Linting [YAML] files... +2021-11-19 13:07:21 [INFO] ---------------------------------------------- +2021-11-19 13:07:21 [INFO] ---------------------------------------------- +2021-11-19 13:07:21 [DEBUG] Linting FILE: /tmp/lint/.github/dependabot.yml +2021-11-19 13:07:21 [DEBUG] FILE_STATUS (dependabot.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:21 [DEBUG] File: /tmp/lint/.github/dependabot.yml, FILE_NAME: dependabot.yml, DIR_NAME:/tmp/lint/.github, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:07:21 [INFO] --------------------------- +2021-11-19 13:07:21 [INFO] File:[/tmp/lint/.github/dependabot.yml] +2021-11-19 13:07:21 [INFO] - File:[dependabot.yml] was linted with [yamllint] successfully +2021-11-19 13:07:21 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/dependabot.yml:6:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:07:21 [DEBUG] Linting FILE: /tmp/lint/.github/linters/.golangci.yml +2021-11-19 13:07:21 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:21 [DEBUG] File: /tmp/lint/.github/linters/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint/.github/linters, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:07:21 [INFO] --------------------------- +2021-11-19 13:07:21 [INFO] File:[/tmp/lint/.github/linters/.golangci.yml] +2021-11-19 13:07:21 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 13:07:21 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/linters/.golangci.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:07:21 [DEBUG] Linting FILE: /tmp/lint/.github/workflows/checks.yml +2021-11-19 13:07:21 [DEBUG] FILE_STATUS (checks.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:21 [DEBUG] File: /tmp/lint/.github/workflows/checks.yml, FILE_NAME: checks.yml, DIR_NAME:/tmp/lint/.github/workflows, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:07:21 [INFO] --------------------------- +2021-11-19 13:07:21 [INFO] File:[/tmp/lint/.github/workflows/checks.yml] +2021-11-19 13:07:21 [INFO] - File:[checks.yml] was linted with [yamllint] successfully +2021-11-19 13:07:21 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.github/workflows/checks.yml:2:1: [warning] missing document start "---" (document-start) +/tmp/lint/.github/workflows/checks.yml:5:81: [warning] line too long (85 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:24:81: [warning] line too long (98 > 80 characters) (line-length) +/tmp/lint/.github/workflows/checks.yml:52:81: [warning] line too long (81 > 80 characters) (line-length) +------ +2021-11-19 13:07:21 [DEBUG] Linting FILE: /tmp/lint/.golangci.yml +2021-11-19 13:07:21 [DEBUG] FILE_STATUS (.golangci.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:21 [DEBUG] File: /tmp/lint/.golangci.yml, FILE_NAME: .golangci.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:07:21 [INFO] --------------------------- +2021-11-19 13:07:21 [INFO] File:[/tmp/lint/.golangci.yml] +2021-11-19 13:07:21 [INFO] - File:[.golangci.yml] was linted with [yamllint] successfully +2021-11-19 13:07:21 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.golangci.yml:2:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:07:21 [DEBUG] Linting FILE: /tmp/lint/.prettierrc.yml +2021-11-19 13:07:21 [DEBUG] FILE_STATUS (.prettierrc.yml) is empty, or not set to 'good' or 'bad'. Assuming it should be linted correctly. Setting FILE_STATUS to 'good'... +2021-11-19 13:07:21 [DEBUG] File: /tmp/lint/.prettierrc.yml, FILE_NAME: .prettierrc.yml, DIR_NAME:/tmp/lint, FILE_STATUS: good, INDIVIDUAL_TEST_FOLDER: yaml +2021-11-19 13:07:21 [INFO] --------------------------- +2021-11-19 13:07:21 [INFO] File:[/tmp/lint/.prettierrc.yml] +2021-11-19 13:07:22 [INFO] - File:[.prettierrc.yml] was linted with [yamllint] successfully +2021-11-19 13:07:22 [DEBUG] Error code: 0. Command output: +------ +/tmp/lint/.prettierrc.yml:1:1: [warning] missing document start "---" (document-start) +------ +2021-11-19 13:07:22 [INFO] ---------------------------------------------- +2021-11-19 13:07:22 [INFO] ---------------------------------------------- +2021-11-19 13:07:22 [INFO] The script has completed +2021-11-19 13:07:22 [INFO] ---------------------------------------------- +2021-11-19 13:07:22 [INFO] ---------------------------------------------- +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for EDITORCONFIG with status success +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for GITHUB_ACTIONS with status success +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for GITLEAKS with status success +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for MARKDOWN with status success +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for NATURAL_LANGUAGE with status success +2021-11-19 13:07:22 [DEBUG] Calling Multi-Status API for YAML with status success +2021-11-19 13:07:22 [NOTICE] All file(s) linted successfully with no errors detected +2021-11-19 13:07:22 [INFO] ----------------------------------------------